I use the enum make a few constants:
enum ids {OPEN, CLOSE};
the OPEN'valuse is zero, but I wanna it as 100. Is it possible?
|
|
|
Java enums are not like C or C++ enums, which are really just labels for integers. Java enums are implemented more like classes - and they can even have multiple attributes.
The big difference is that they are type-safe which means you don't have to worry about assigning a COLOR enum to a SIZE variable. See http://java.sun.com/j2se/1.5.0/docs/guide/language/enums.html for more. |
|||||
|
|
Yes. You can pass the numerical values to the constructor for the enum, like so:
See the Sun Java Language Guide for more information. |
||||
|
|
|
If you use very big enum types then, following can be useful;
|
||||
|
|
|
whats about using this way:
there is only one method .. you can use static method and pass the Enum as parameter like:
Note that these two ways use less memory and more process units .. I don't say this is the best way but its just another approach. |
|||
|
|
|
If you want emulate enum of C/C++ (base num and nexts incrementals):
|
|||
|
|