Reputation: 7
I found this code on the internet (because I'm trying to create a timer). Can someone tell me why this codes does not throw an IndexOutOfBoundsException
.
Here's the code:
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;
}
then it is rendered with a timer task
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);
Why is it not throwing an IndexOutOfBoundsException
. I am confused because it is instantiated with a value of 30 and when I try to run this the runningTime exceeeds to 30 like 100 in msec, 59 in sec so on and so forth.
And here's the full code:
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();
}
}
}
Upvotes: 0
Views: 71
Reputation: 37845
The reason it looks like an exception is not thrown is because the code is terrible and catches the exception:
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)
{} // <- catches the exception and does nothing
Change the catch block to this:
}catch(Exception e) {
e.printStackTrace();
}
And you will see that an exception is thrown. Then you could either:
<= 30
to < 30
.As for the block in run
, as far as I can tell, count is never changed so it's always 0.
Upvotes: 4
Reputation: 41188
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;
}
This code will through an IndexOutOfBounds exception. The final pass through the loop j is 30, the highest index in any array is 29.
If it isn't throwing an exception then this code is not being executed or the exception is being caught.
Upvotes: 0