C# Enums
An enum
is a special “class” that represents a group of constants (unchangeable/read-only variables).
To create an enum
, use the enum
keyword (instead of class or interface), and separate the enum items with a comma:
1 2 3 4 5 6 |
enum Level { Low, Medium, High } |
1 |
You can access enum items with the dot syntax: |
1 2 |
Level myVar = Level.Medium; Console.WriteLine(myVar); |
Enum is short for “enumerations”, which means “specifically listed”.
Enum inside a Class
You can also have an enum
inside a class【可以在类里面定义 Enum】:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
class Program { enum Level { Low, Medium, High } static void Main(string[] args) { Level myVar = Level.Medium; Console.WriteLine(myVar); } } |
The output will be:
1 |
Medium |
Enum Values
By default, the first item of an enum has the value 0, The second has the value 1, and so on. 【每个枚举的值】
To get the integer value from an item, you must explicitly convert the item to an int
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
enum Months { January, // 0 February, // 1 March, // 2 April, // 3 May, // 4 June, // 5 July // 6 } static void Main(string[] args) { int myNum = (int) Months.April; Console.WriteLine(myNum);<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-purple-color">//██将枚举,强转成 int 值</mark></strong> } |
The output will be:
1 |
3 |
You can also assign your own enum values, and the next items will update their numbers accordingly:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
enum Months { January, // 0 February, // 1 March=6, // 6 <strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-purple-color">//███ 可以自定义枚举中每个元素的值!!!</mark></strong> April, // 7 May, // 8 June, // 9 July // 10 } static void Main(string[] args) { int myNum = (int) Months.April; Console.WriteLine(myNum); } |
The output will be:
1 |
7 |
Enum in a Switch Statement
Enums are often used in switch
statements to check for corresponding values:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
enum Level { Low, Medium, High } static void Main(string[] args) { Level myVar = Level.Medium; switch(myVar) { case Level.Low: Console.WriteLine("Low level"); break; case Level.Medium: Console.WriteLine("Medium level"); break; case Level.High: Console.WriteLine("High level"); break; } } |
The output will be:
1 |
Medium level |
Why And When To Use Enums?
Use enums when you have values that you know aren’t going to change, like month days, days, colors, deck of cards, etc.