-1
votes
3answers
85 views

How does Java efficiently check for ArrayIndexOutOfBounds? [closed]

What mechanism does Java use to efficiently check if the array element I'm trying to access is out of bounds. The one way I thought it could do it is by having metadata before the array in memory. But ...
-2
votes
1answer
176 views

Java Blackberry NullPointerException

I have a program that at the moment doesn't do anything other than display the time and allow the user to press a button that will lead him to a different screen which i turn will display a dialog to ...
4
votes
2answers
168 views

int i=99 is working however int i = 099 not working

In Java, I noticed that when I write int i = 99; it works fine. However when I say int i = 099; I get an exception: java.lang.RuntimeException: Uncompilable source code - Erroneous tree type: ...