Declaring an array filled with Objects
class ArrayEx tries to create an array of java.lang.Object(s), but it won’t. All it will do is to create an array of 4 elements, but each of the element will contain null. Unlike declaring and initializing Java primitives where the array elements will be populated automatically with the default primitive values (int, short, boolean, float [...]