Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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..

share|improve this question

3 Answers

up vote 12 down vote accepted

No, there is no such thing. Primitive array elements are initialized to the default primitive value (0 for int). Object array elements are initialized to null.

You can use java.util.Arrays.fill(array, defaultElementValue) to fill an array after you create it.

To quote the JLS

An array is created by an array creation expression (§15.10) or an array initializer (§10.6).

If you use an initializer, then the values are assigned. int[] ar = new int[] {1,2,3}

If you are using an array creation expression (as in your example), then (JLS):

Each class variable, instance variable, or array component is initialized with a default value when it is created

share|improve this answer
then where they get default values ..directly by the jvm? – saravanan Feb 7 '11 at 12:07
1  
@saravanan didn't [ this ](stackoverflow.com/questions/4873673/…) answer – Jigar Joshi Feb 7 '11 at 12:13
@saravanan - yes, see updated – Bozho Feb 7 '11 at 12:17
@Bozho: thanks for your answer ..i have another doubt ..why we can't assign index value in anonymous array creation int[] ar = new int[] {1,2,3}.... – saravanan Feb 7 '11 at 12:29
1  
what do you mean "index value" ? – Bozho Feb 7 '11 at 12:36
show 3 more comments

No, there is no such constructor. There is a dedicated opcode newarray in the java bytecode which is called in order to create arrays.

For instance this is the disassembled code for this instruction int[] a = new int[4];

0:  iconst_4      // loads the int const 4 onto the stack
1:  newarray int  // instantiate a new array of int 
3:  astore_1      // store the reference to the array into local variable 1
share|improve this answer
1  
+1 for the bytecode – Bozho Feb 7 '11 at 12:27

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.