我正在尝试搜索数组中的第一个空槽。你能parseInt()
引用来做到这一点,还是我会使用“ stobar[b] == null
”?
int[] stobar = new int[100];
for(int b = 0; b < stobar.length; b++)
{
if(stobar[b] == Integer.parseInt(""))
{
stobar[b] = row;
stobar[b+1] = col;
break;
}
}