int[] a=new int[4];
i think when the array is created ..there will be the constructor calling (assigning elements to default values) if i am correct..where is that constructor..
|
|
|
No, there is no such thing. Primitive array elements are initialized to the default primitive value ( You can use To quote the JLS
If you use an initializer, then the values are assigned. If you are using an array creation expression (as in your example), then (JLS):
|
|||||||||||||||
|
|
No, there is no such constructor. There is a dedicated opcode For instance this is the disassembled code for this instruction
|
|||||
|
|
From a conceptual level, you could see the array creation as a array constructor, but there is no way for a programmer to customize the constructor, as array types have no source code, and thus can't have any constructors (or methods, by the way). See my answer here for a conceptual view of arrays. Actually, creating arrays is a primitive operation of the Java VM. |
|||
|
|