aspose file tools
The moose likes Beginning Java and the fly likes Array constructor Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Array constructor" Watch "Array constructor" New topic
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
    
    3

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
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Array constructor
 
Similar Threads
Array questions
Arrays
Array doubt
Non-Default Constructor problem
Array dimension missing