In Java we can declare an array using the following:
String[] array = new String[10]; int size = array.length;
Does this mean that the arra
I just want to add that arrays have a representation in the reflection API - java.lang.reflect.Array.