I have a Java int[][][] object in a separate class.
The first dimension of the array has about 1000 elements, but I only need to access one at a time.
My question is: If I want to access only one element at a time, like this:
int[][] some2DInt = SomeClass.some3DInt[5];
Would this be effective? I mean, would Java load the entire 1000 elements or just the one I really want?