Java Programming - array [] []

images = new JLabel[8][8];whats the dimentionsfrom 0,0 to 8,8or 1,1 to 8,8inclusive...
[121 byte] By [Chillia] at [2007-11-26 23:25:13]
# 1
0 to 7. 8 elements altogether.
CeciNEstPasUnProgrammeura at 2007-7-10 14:32:25 > top of Java-index,Java Essentials,Java Programming...
# 2
Try to access [0][0] and find out.or ask yourself if there is a reason why arrays of arrays would have different indexing rules then an array.
Rusty_Shackleforda at 2007-7-10 14:32:25 > top of Java-index,Java Essentials,Java Programming...
# 3
images = new JLabel[8][8];whats the dimentionsfrom 0,0 to 8,8or 1,1 to 8,8inclusive...You declared the size is 8 x 8And the index of first element of array is 0
rym82a at 2007-7-10 14:32:25 > top of Java-index,Java Essentials,Java Programming...