The start of the Reflection tutorial @ the Java Tutorials states:
Every object is either a reference or primitive type.
Apart from the types used to box primitive types, when and how is a primitive type an object?
|
The start of the Reflection tutorial @ the Java Tutorials states:
Apart from the types used to box primitive types, when and how is a primitive type an object? |
|||
|
|
|
It says |
|||||||
|
|
According to the Java Language Specification:
Here's the relevant paragraph. However there is a source for misunderstandings in the fact that there are contexts where the term object is used to mean roughly any piece of memory that can be explicitly referenced in a program. With this definition attributes and variables of primitive types are indeed objects. |
||||
|
|
So, a primitive type can't be an object. But if you say everything in the world is object, then it is. |
|||
|
|
|
The classification is exclusive, that means that if a variable is a primitive type, it is not a reference to an In this case, the author is using the term object (in lowercase) as a synonym of a thing (variable, parameter, constant, attribute, whatever) that holds a value. |
|||||
|
|
I don't think it is an object. An object is a type of something with definitions on how you can create it (contructor). A primitive type doesn't have this, it's value gets stored directly onto memory. |
|||
|
|
|
In Java a primitive type cannot be an Object. The primitive types are not accessed with references, but direct. If you pass them to a method, they are copied. If you pass an Object, only the reference to it is copied. Primitives don't have any overhead in memory, like Objects, they need as much bytes as specified in their definition (for example int needs 4). Using an Integer Object, it uses more than the 4 Integer bytes. |
|||
|
|