Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ボードゲームを作っているので、ボタンのグリッドにプレーヤー1とプレーヤー2のピースを配置する必要があります。ボタンに付けたい部分を表すために画像アイコンを使用しています。問題は、ボタンのループがあり、ボタン1、3、5、7、9にpiece1を配置し、ボタン2、4、6、8、10にpiece2を配置する必要があることです。
for(int i=0;i<30;i++){ buttons[i] = new JButton("label"+ i); buttons[i].setBackground(Color.white); if (i < 10) { if (i%2 == 0) { buttons[i].setIcon(piece2); } else { buttons[i].setIcon(piece1); } } panel.add(buttons[i]); }