I'm just now realizing their power and utility over using a Constants class... but I'm very interested to know how they're implemented under the hood. They seem to work alot like a static method or static constant in that you just import the file that "owns" the enum and you can make reference to them by using enumName.valueName. The Javadocs online seem to suggest they're a class but it seems weird to have an "unnamed" class on demand. (In Java at least...)
|
|
|||
|
|
|
i believe each instance of the enum is an anonymous final subclass of the enum. decompile:
and you can see the instances being made:
|
|||||
|
|
If you're interested in how they're implemented under the hood rather than what you can do with them, simply have a look at their definition. |
|||
|
|
Here's an answer I provided for a similar question. It might be a good starting point to help you understand enums and what you can do with them in Java. |
|||
|
|
|
Enums are statically created when the enum class is first loaded and are immutable. You must have a constructor in the enum class if you want to assign different values to your enum. After the constructor was finished you cannot change the enums value (immutable as said). You don't need to use equals() method on enums: the == operator will work just fine. I have written a tutorial in my blog showing some nice uses of the enum class, that are not trivial from just reading the enum reference. if you're interested, heres the link. Blog |
|||||||
|
