1

我在 Java 中创建了一个存储座位号(行、列)的二维数组。我已经初始化了数组,以便所有值都以 0 开始,如果稍后使用另一种方法 Sit 占用座位,则该坐标处的值是 1。

这是初始化:

int[][] seatlist= new int[FIRSTCLASS/3][3];           


for (int i=0; i<= FIRSTCLASS/3; i++) 
     {  
        for (int j=0; j<3; j++) 
      { 
         seatlist[i][j]=0;

       }
    }

这是我的方法:

public boolean canSit(int seatrow, int seatcolumn)
{ 
    if(seatlist[seatrow-1][seatcolumn-1]==0) 
    { 
        return true;
    } 
    else 
        return false; 
}

当我尝试编译时,我在 if 语句行上不断收到“需要数组,但找到 int”错误。我无法确定问题 - 任何人都可以帮忙吗?

提前致谢!

4

1 回答 1

0

试试这个。

Integer[][] seatlist= new Integer[FIRSTCLASS/3][3];

或者

int[FIRSTCLASS/3][3] seatlist;  
于 2013-04-07T01:00:55.660 回答