| Author |
Array constructor
|
Kirill Yunussov
Greenhorn
Joined: Jan 22, 2013
Posts: 2
|
|
Hi,
Exactly what code runs when you initialize an array as follows? I tried to see in debug but it doesn't go into the array's constructor. Just curious what it looks like.
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12929
|
|
Welcome to the Ranch.
Arrays are a built-in feature of Java. There's really no code to jump into - in fact, there's a single bytecode instruction for creating an array (the bytecode instruction "anewarray").
There is no constructor for arrays.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
Kirill Yunussov
Greenhorn
Joined: Jan 22, 2013
Posts: 2
|
|
|
great, thank you
|
 |
 |
|
|
subject: Array constructor
|
|
|