Is there a class to an array in java -


this question has answer here:

we know arrays objects in java. believe create object in object oriented languages(if not can have in separate discussion), need blueprint of it(a class). i'm not sure or cannot find class object being created arrays when new operator used. if there class arrays in java, how hierarchy like?

if there no class, how objects instantiated? , reason behind having object type without class?

arrays created virtual machine special instruction called newarray, think them special construct.

from jvm spec:

3.9. arrays

java virtual machine arrays objects. arrays created , manipulated using distinct set of instructions. newarray instruction used create array of numeric type. code:

also read more jls class hierarchy of array.

the direct superclass of array type object.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -