越界问题
for(int j=0;j<bytes;j++)
{
if(numOfMemory[j]==0)
{
start=j;
while(numOfMemory[j]==0)
{
j++;
}
holeNum++;
System.out.println("hole "+(q++)+" start location = "+start+"size = "+j);
}
else continue;
}
我想用这段代码处理在numOfMemory数组(长度是bytes)中的连续0的段数
为什么会出现越界?
谢谢各位了