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
Arrays of anything are objects. One can call methods such as equals, hashcode etc:
equals
hashcode
final int[] i = {}; i.equals(new int[] {1}); // false i.hashcode();
One cannot call methods on a native type.