我需要在學校創建一個簡單的掃雷遊戲。我想製作一個簡單易用的JButton-Array。但它不起作用!我就像搜索整個互聯網尋找解決方案一樣跌倒!你能幫助我嗎?下面的代碼:簡單按鈕陣列不起作用
public class Minesweeper extends Applet {
public void init() {
//Frameinitialiing
JFrame frame = new JFrame("Minesweeper");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
int width = 800;
frame.setSize(width, width);
frame.setResizable(false);
frame.setLocation(0,0);
frame.setVisible(true);
//Game
JPanel panel = new JPanel();
panel.setLayout(null);
frame.add(panel);
//Buttons
int w = 80;
JButton[][] button = new JButton[10][10];
for (int i = 1; i == 9 ; i++) {
for (int j = 1; j == 9 ; j++) {
button[i][j].setBounds(i*80 , j*80 , w , w);
this.add(button[i][j]);
}
}
}
}
什麼不工作是什麼?你嘗試去解決呢? –
我相信你會得到一個錯誤信息,哪個和你自己已經做了什麼(解決方法很簡單!) – brummfondel