Delete comment from: Java67
Couple of more points about Java array, they are homogenous, you cannont store an int into String array, it will compile time error, but an Object array can store anything, but if a String array stores an object other than String it will throw ArrayStoreException at runtime.
Oct 2, 2014, 5:04:16 AM