In which class is the length field defined in Java (e.g. for array length)?
Will I be able to see it defined say in Object class?
EDIT : Why was this field so designed(any thing related with security or memory efficiency)?
|
|
Array types are special in Java. This is an excerpt from JLS 10.7 Array Members
Despite this, there are still old-standing bugs when you're using reflection on arrays: neither Neither member is inherited in the traditional way from any superclass; all array types extends from "does this mean that never will one be able to see the length variable being defined?" There is no actual source code for array types. Again, these types are special; the JVM just pulls out these types out of a hat whenever they're required. You will not see a So, no, you will not be able to see the For further reading, here are some information on Java Reflection: |
|||||||||||||
|
|
Arrays are not like regular classes, they are a special case defined in the Java Language Specification. So the .length public final variable is defined in the Java Language Specification, but it is not actually defined anywhere in a .java or a .class file. |
|||||
|
|
You need to be a bit more specific than that. A variable length can exist in any class. If you mean from the API then you are probably looking for the Array. Some classes have a length() method. |
|||
|
In java with arrays you can do this. For example:
Length would be 3; |
|||||||||||||||
|
|
Any class can have a field called Arrays do not have a
but it is not really a plain field, because this does not compile:
and, at the JVM level, the array length is accessed with a specific opcode ( |
|||
|
|
|
There is no single answer to this question. Anyone can include a I will say that in the widely-used JavaBean convention, classes that could reasonably have a length attribute but don't have a public variable |
||||
|