Question: What does mean "Lists (like Java arrays) are zero based."? Does it
mean that all elements when I create a new array are not nulls, but zeroes? Like
for example in PHP?
Answer : No, when you create a new array,
all elements, if they are not initialized are nulls, but index starts from zero.
First element always will have index 0, not 1 like this:
myArray[] contains for example three elements. They are:
All logos and trademarks in this site are property of their respective owner. The comments are property of their posters, all the rest 1999-2006 by Java FAQs Daily Tips.