Why are arrays Objects, but can not be used as a base class? Why are arrays Objects, but can not be used as a base class? arrays arrays

Why are arrays Objects, but can not be used as a base class?


Java was a compromise between non-object languages and very slow languages of that time where everything was an object (think about Smalltalk).

Even in more recent languages, having a fast structure at the language level for arrays (and usually maps) is considered a strategic goal. Most people wouldn't like the weight of an inheritable object for arrays, and certainly nobody wanted this before JVM advances like JIT.

That's why arrays, while being objects, weren't designed as class instances ("An object is a class instance or an array"). There would be little benefit in having the ability to override a method on an array, and certainly not a great-enough one to counterbalance the need to check for the right method to apply (and in my opinion not a great-one enough to counterbalance the increased difficulty in code reading, similar to what happens when you override operators).


I came across UNDER THE HOOD - Objects and arrays which explains almost anything you need to know about how JVM handles arrays. In JVM, arrays are handled with special bytecodes, not like other objects we are familiar with.

In the JVM instruction set, all objects are instantiated and accessed with the same set of opcodes, except for arrays. In Java, arrays are full-fledged objects, and, like any other object in a Java program, are created dynamically. Array references can be used anywhere a reference to type Object is called for, and any method of Object can be invoked on an array. Yet, in the Java virtual machine, arrays are handled with special bytecodes.

As with any other object, arrays cannot be declared as local variables; only array references can. Array objects themselves always contain either an array of primitive types or an array of object references. If you declare an array of objects, you get an array of object references. The objects themselves must be explicitly created with new and assigned to the elements of the array.

Arrays are dynamically created objects, and they serve as a container that hold a (constant) number of objects of the same type. It looks like arrays are not like any other object, and that's why they are treated differently.


I'd like to point out this article. It seems as though arrays and objects follow different opcodes. I can't honestly summarize it more than that however it seems, arrays are simply not treated as Objects like we're normally used to so they don't inherit Object methods.

Full credits to the author of that post as it's a very interesting read, both short & detailed.


Upon further digging into the topic via multiple sources I've decided to give a more elaborate version of my previous answer.

The first thing to note that instantiation of Objects and Arrays are very different within the JVM, their follow their respective bytecode.

Object:

Object instantiation follows a simple Opcode new which is a combination of two operands - indexbyte1 & indexbyte2. Once instantiated the JVM pushes the reference to this object onto the stack. This occurs for all objects irrespective of their types.


Arrays:

Array Opcodes (regarding instantiation of an array) however are divided into three different codes.

newarray - pops length, allocates new array of primitive types of type indicated by atype, pushes objectref of new array

newarray opcode is used when creating arrays that involve primitive datatypes (byte short char int long float double boolean) rather than object references.

anewarray - pops length, allocates a new array of objects of class indicated by indexbyte1 and indexbyte2, pushes objectref of new array

anewarray opcode is used when creating arrays of object references

multianewarray - pops dimensions number of array lengths, allocates a new multidimensional array of class indicated by indexbyte1 and indexbyte2, pushes objectref of new array

multianewarray instruction is used when allocating multi-dimensional arrays


Object can be a class instance or an array.

Take from Oracle Docs

A class instance is explicitly created by a class instance creation expression

BUT

An array is explicitly created by an array creation expression

This goes hand in hand with the information regarding the opcodes. Arrays are simply not developed to be class interfaces but are instead explicitly created by array creation expression thus naturally wouldn't implicitly be able to inherit and/or override Object.

As we have seen, it has nothing to do with the fact that arrays may hold primitive datatypes. After giving it some thought though, it isn't very common to come across situations where one might want to toString() or equals() however was still a very interesting question to try and answer.


Resources:

Oracle-Docs chapter 4.3.1

Oracle-Docs chapter 15.10.1

Artima - UnderTheHood