vote up 2 vote down star

What's the equivalent of Java's enum in C#?

flag

1  
Maybe I'm over thinking it, but I've expect you already know about C#'s enum and there is some functionality with Java's enum which you are referring to. If so, perhaps you could elaborate in your question. – John MacIntyre Sep 3 at 22:39
2  
@Nosrama: this question is either unclear, or else it's a really dumb question. – John Saunders Sep 3 at 22:41
Although they both support an enum keyword, and the syntax is similar, that is about where it ends. In Java they are classes with special restrictions. In C# they are a typed int32. – Yishai Sep 3 at 22:46
4  
This question is perfectly clear if you know anything about Java `enum`s. – Pavel Minaev Sep 3 at 23:03
1  
Same question: stackoverflow.com/questions/469287/… – Mikhail Oct 2 at 10:36
show 1 more comment

4 Answers

vote up 5 vote down check

Full Java enum functionality isn't available in C#. You can come reasonably close using nested types and a private constructor though. For example:

using System;
using System.Collections.Generic;
using System.Xml.Linq;

public abstract class Operator
{
    public static readonly Operator Plus = new PlusOperator();
    public static readonly Operator Minus = 
         new GenericOperator((x, y) => x - y);
    public static readonly Operator Times = 
         new GenericOperator((x, y) => x * y);
    public static readonly Operator Divide = 
         new GenericOperator((x, y) => x / y);

    // Prevent other top-level types from instantiating
    private Operator()
    {
    }

    public abstract int Execute(int left, int right);

    private class PlusOperator : Operator
    {
        public override int Execute(int left, int right)
        {
            return left + right;
        }
    }

    private class GenericOperator : Operator
    {
        private readonly Func<int, int> op;

        internal GenericOperator(Func<int, int> op)
        {
            this.op = op;
        }

        public override int Execute(int left, int right)
        {
            return op(left + right);
        }
    }
}

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:

  • Ordinal support
  • Switch support
  • EnumSet
  • Serialization/deserialization (as a singleton)

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 const fields automatically, and changing any switch over the enum type to a switch over integers, only allowing "known" cases .)

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.

link|flag
vote up 5 vote down

enum , or do you need something in particular that Java enums have but c# doesn't ?

link|flag
vote up 10 vote down

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?

link|flag
3  
"They will work the same" - not IMO, because constant numbers can't have custom behaviour, unlike Java enum values. – Jon Skeet Sep 3 at 23:21
2  
yup, hence the qualification 'for basic use'. I agree that one of the nice things about java enums is the custom behavior – Chi Sep 3 at 23:30
vote up 3 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.