我基本上写了一个布尔数组[x][y],x,y 是坐标,如果它是真的有炸弹。
我在使用吸气剂时遇到问题,
我到目前为止
boolean[][] bombArray = new boolean[Total_Columns][10];
for(x=0,x<Total_Colmns,x++){
bombArray[x][0] = true;
}
public boolean getBombArray(int x,int y){
if(bombArray[x][y] .equals(true){
return true;
}
else{
return false;
}
}
我的主要看起来像这样
main()
boolean isBomb = myPanel.getBombArray(x,y) //x and y being the cursor coordinates
if(isBomb){
....
....
....
....
{
else{
....
....
....
}
基本上网格是这样的
********* ………… ………… ………… ………… ………… ………… ………… …………
但我的 get 不起作用,它不断抛出异常