If I have an enum object, is it considered a primitive or a reference?
|
|
It's a reference type. Unlike many languages, in which an You can even add your own members to the enum class, like this:
|
|||||||||||||||||
|
|
The way enums work is actually not too different from how they were used before their introduction with Java 5:
By instantiating the different suits on class loading it is ensured that these will be mutually exclusive and the private constructor ensures that no further instances will be created. These would be comparable either through == or equals. The Java 5 enum works pretty much the same way, but with some necessary features to support serialization etc. I hope this background sheds some further light. |
|||
|
|
|
This article essentially shows you how enums are implemented, and as SLaks says, they are references. |
|||
|
|
|
Enums in Java are Objects and these also define their own methods ordinal() that returns int representation. So unlike many other languages these are reference type. |
|||
|
|
|
Enums are reference types, in that they can have methods and can be executed from command line as well , if they have main method. See following "Planet" example from Sun/Oracle http://download.oracle.com/javase/tutorial/java/javaOO/enum.html |
|||
|
|