我在互聯網上發現了這個代碼(因爲我試圖創建一個計時器)。有人可以告訴我爲什麼這個代碼不會拋出IndexOutOfBoundsException
。Integer背後的原因
下面的代碼:
hour = new int[30];
min = new int[30];
sec = new int[30];
msec = new int[30];
start = false;
stop = true;
for(int j = 0 ; j <= 30 ; j++)
{
hour[j] = 0;
min[j] = 0;
sec[j] = 0;
msec[j] = 0;
}
則呈現一個計時器任務
public void run()
{
msec[count]++;
if(msec[count] == 100)
{
msec[count] = 0 ;
sec[count]++;
}
else if(sec[count] ==60)
{
sec[count] = 0;
min[count]++;
}
else if(min[count] == 60)
{
min[count] = 0;
hour[count]++;
}
else if(hour[count] == 24)
{
hour[count] = 0;
}
repaint();
}
};
timer = new Timer();
timer.scheduleAtFixedRate(task,10,67);
爲什麼不拋出IndexOutOfBoundsException
。我很困惑,因爲它的實例化值爲30,當我嘗試運行這個時,runningTime超過30,如100毫秒,59秒等等。
而這裏的全碼:
public class TimerCan extends Canvas
{
private Timer timer;
private Midlet myMid;
private Player z;
private int habaNgString,hour[],sec[],min[],msec[],maxX,maxY,count,length,x,y;
private String runningTime;
private boolean start,stop;
public Image img;
public TimerCan(Midlet midlet)
{
this.myMid= midlet;
try
{
maxX = getWidth();
maxY = getHeight();
count = 0;
hour = new int[30];
min = new int[30];
sec = new int[30];
msec = new int[30];
start = false;
stop = true;
for(int j = 0 ; j <= 30 ; j++)
{
hour[j] = 0;
min[j] = 0;
sec[j] = 0;
msec[j] = 0;
}
}catch(Exception e)
{}
}
public void paint(Graphics g)
{
if(hour[count] < 10)
{
runningTime = "0"+String.valueOf(hour[count])+":";
}
else
{
runningTime = String.valueOf(hour[count]) + ":";
}
if(min[count] < 10)
{
runningTime = runningTime+"0"+String.valueOf(min[count]) + ":";
}
else
{
runningTime = runningTime+String.valueOf(min[count]) + ":";
}
if(sec[count] < 10)
{
runningTime = runningTime+"0"+String.valueOf(sec[count]) + ":";
}
else
{
runningTime = runningTime + String.valueOf(sec[count]) + ":";
}
if(msec[count] < 10)
{
runningTime = runningTime+"0"+String.valueOf(msec[count]);
}
else
{
runningTime = runningTime+String.valueOf(msec[count]);
}
try{
img = Image.createImage("/picture/aa.png");
}
catch(Exception error){
}
x = getWidth()/2;
y = getHeight()/2;
g.setColor(63,155,191);
g.fillRect(0,0,maxX, maxY);
g.drawImage(img, x, y, Graphics.VCENTER|Graphics.HCENTER);
g.setColor(0,0,0) ;
g.drawString(runningTime,maxX,maxY,Graphics.TOP|Graphics.LEFT);
}
private void startTimer()
{
TimerTask task = new TimerTask()
{
public void run()
{
msec[count]++;
if(msec[count] == 100)
{
msec[count] = 0 ;
sec[count]++;
}
else if(sec[count] ==60)
{
sec[count] = 0;
min[count]++;
}
else if(min[count] == 60)
{
min[count] = 0;
hour[count]++;
}
else if(hour[count] == 24)
{
hour[count] = 0;
}
repaint();
}
};
timer = new Timer();
timer.scheduleAtFixedRate(task,10,67);
}
protected void keyPressed(int keyCode)
{
if(keyCode == Canvas.KEY_NUM1)
{
if(start == false)
{
start=true;
stop=false;
}
else if(stop == false)
{
start = false ;
stop = true ;
timer.cancel();
}
if(start==true)
{
startTimer();
}
}
if(keyCode == Canvas.KEY_NUM2)
{
min[count]=0;
sec[count]=0;
msec[count]=0;
start = false;
stop = true;
timer.cancel();
try{
z.deallocate();
}
catch(Exception e){}
repaint();
}
if(keyCode == Canvas.KEY_NUM3)
{
if(stop == false)
{
start = false;
stop = true;
timer.cancel();
try{
InputStream inss = getClass().getResourceAsStream("alarm.wav");
InputStreamReader iis= new InputStreamReader(inss);
z = Manager.createPlayer(inss,"audio/x-wav");
z.prefetch();
z.setLoopCount(2);
z.start();
}
catch(Exception e){
}
}
}
if(keyCode==Canvas.KEY_NUM0)
{
try{
z.deallocate();
}
catch(Exception e){}
myMid.exit();
}
}
}
當然的第一個片段的確拋出異常。至於其他方面,我們不知道其他代碼是什麼。 (什麼是計數?) – Radiodef
'for(int j = 0; j <= 30; j ++)'應該變成'for(int j = 0; j <30; j ++)',因爲在數組中可以有30個元素,索引是從0到29 – Athanor
如果你的目的是學習編寫好的Java代碼,我建議把這個例子扔掉。如果你想學習如何修復不好的代碼,這可能會很有用。 –