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 an if statement at each check would be quite inefficient in terms of time. So how does it actually do it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
closed as not a real question by Jesse Webb, Brian Roach, kazanaki, Linger, Rory McCrossan Dec 17 '12 at 14:31
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
This is very famous piece of code because of Oracle vs Google battle:
This method is called internally. |
|||||||
|
|
Simple check as below would do,
|
|||||
|
|
It seems that it does literally check boundaries on each of
But how it is actually done is implementation specific. |
|||
|
|

<and>check, and can be evaluated at runtime? Short of "magic", I cannot think of anything. – SJuan76 Dec 17 '12 at 8:17