Can you add to an enum type in run-time

后端 未结 6 639
甜味超标
甜味超标 2020-12-08 07:06

If I have an enum type:

public enum Sport
{
    Tennis = 0;
    Football = 1;
    Squash = 2;
    Volleyball = 3;
}

Can I somehow add durin

6条回答
  •  南方客
    南方客 (楼主)
    2020-12-08 07:33

    Here is more Object orientated way to maybe achieve what you are trying to achieve. This solution is inspired by early Java approach to enumeration:

    struct Sport {
        readonly int value;
        public Sport(int value) {
            this.value = value;
        }
        public static implicit operator int(Sport sport) {
            return sport.value;
        }
        public static implicit operator Sport(int sport) {
            return new Sport(sport);
        }
    
        public const int Tennis =       0;
        public const int Football =     1;
        public const int Squash =       2;
        public const int Volleyball =   3;
    }
    
    //Usage:
    Sport sport = Sport.Volleyball;
    switch(sport) {
        case Sport.Squash:
            Console.WriteLine("I bounce really high");
            break;
    }
    Sport rugby = 5;
    if (sport == rugby)
        Console.WriteLine("I am really big and eat a lot");
    

    To walk through different featues of this solution.

    1. It's an immutable struct that wraps up an integer value. The value is enforced immutable by readonly keyword.

    2. The only way to create one of these structs is to call the constructor that takes the value as a parameter.

    3. implicit operator int is there so that the structure can be used in the switch bock - i.e. to make the structure convertible to int.

    4. implicit operator Sport is there so that you can assign integer values to the structure i.e. Sport rugby = 5.

    5. const values are the sports known at compile time. They can also be used as case labels.

    What I would actually do

    public static class Sports {
        public static readonly Sport Football = new Sport("Football");
        public static readonly Sport Tennis = new Sport("Tennis");
    }
    
    public class Sport {
        public Sport(string name) {
            Name = name;
        }
        public string Name { get; private set; }
    
        // override object.Equals
        public override bool Equals(object obj) {
            var other = obj as Sport;
            if(other == null) {
                return false;
            }
    
            return other == this;
        }
    
        // override object.GetHashCode
        public override int GetHashCode() {
            return Name.GetHashCode();
        }
    
        public static bool operator == (Sport sport1, Sport sport2) {
            if(Object.ReferenceEquals(sport1, null) && Object.ReferenceEquals(sport2 , null))
                return true;
    
            if(Object.ReferenceEquals(sport1, null) || Object.ReferenceEquals(sport2, null))
                return false;
    
            return sport1.Name == sport2.Name;
        }
        public static bool operator !=(Sport sport1, Sport sport2) {
            return !(sport1 == sport2);
        }
    }
    

    This would create a value class Sport that has a name. Depending on your application you can extend this class to provide other attributes and methods. Having this as class gives you more flexibility as you can subclass it.

    Sports class provides a static collection of sports that are known at compile time. This is similar to how some .NET frameworks handle named colors (i.e. WPF). Here is the usage:

    List sports = new List();
    
    sports.Add(Sports.Football);
    sports.Add(Sports.Tennis);
    //What if the name contains spaces?
    sports.Add(new Sport("Water Polo"));
    
    var otherSport = new Sport("Other sport");
    
    if(sports.Contains(otherSport)) {
        //Do something
    }
    
    foreach(var sport in sports) {
        if(sport == otherSport) {
            //Do Something
        } else if(sport == Sports.Football) {
            //do something else
        }
    }
    

    Once you do this, you'd find there is actuall very little need for having an enumeration as any conditional operations on the sport type can be handled within the Sport class.

    EDIT Realised that my equality operator will throw a StackOverflowException I always keep forgetting to write Object.ReferenceEquals(obj,null) instead of obj==null, which will recurse infinitely.

提交回复
热议问题