What's the equivalent of Java's enum in C#?
|
|
|||||||||||||||||||
|
|
|
Full Java enum functionality isn't available in C#. You can come reasonably close using nested types and a private constructor though. For example:
Of course you don't have to use nested types, but they give the handy "custom behaviour" part which Java enums are nice for. In other cases you can just pass arguments to a private constructor to get a well-known restricted set of values. A few things this doesn't give you:
Some of that could probably be done with enough effort, though switch wouldn't really be feasible without hackery. Now if the language did something like this, it could do interesting things to make switch work by making the hackery automatic (e.g. declaring a load of Oh, and partial types mean you don't have to have all of the enum values in the same file. If each value got quite involved (which is definitely possible) each could have its own file. |
||
|
|
|
|
enum , or do you need something in particular that Java enums have but c# doesn't ? |
||
|
|
|
|
Enums are one of the few language features that is better implemented in java than c#. In java, enums are full fledged named instances of a type, while c# enums are basically named constants. That being said, for the basic case, they will look similar. However in java, you have more power, in that you can add behavior to the individual enums, as they are full fledged classes. is there some feature in particular you are looking for? |
|||
|
|
You could probably use the old typesafe enum pattern that we used in Java before we got real ones (assuming that the ones in C# really aren't classes as a comment claims). The pattern is described just before the middle of this page |
||
|
|
