博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 中的枚举类型 enum (属于值类型)
阅读量:5925 次
发布时间:2019-06-19

本文共 3026 字,大约阅读时间需要 10 分钟。

原文 

 

C# 支持两种特殊的值类型:枚举和结构。

声明枚举:声明时要声明所有可能的值。

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using 
System; 
using 
System.Collections.Generic; 
using 
System.Linq; 
using 
System.Text; 
   
namespace 
enumType 
    
enum 
Season     
// enum 类型定义在 class 外面 
    
        
Spring, Summer, Fall, Winter    
// 最后一个元素后面不加" ; " 
    
   
    
class 
Program 
    
        
//enum Season     // 枚举变量定义在此处也可以 
        
//{ 
        
//    Spring, Summer, Fall, Winter     
        
//} 
   
        
static 
void 
Main(
string
[] args) 
        
            
Season beauty = Season.Fall; 
            
Season coldSeason = Season.Winter; 
            
Season currentSeason = Season.Summer; 
   
            
Console.WriteLine(
"The beautiful season is {0}."
, beauty);               
            
// 用 WriteLine 显示枚举变量时,编译器会自动生成代码,输出和变量值匹配的字符串 
   
            
Console.WriteLine(
"The beautiful season is {0}."
, beauty.ToString());    
            
// 也可以使用 ToString 方法,显式地将一个枚举变量转换成代表其当前值的一个字符串 
   
            
Console.WriteLine(
"The current season is {0}."
, currentSeason); 
            
Console.WriteLine(
"{0} is very cold."
, coldSeason); 
        
    

 

 运行后结果如下:

在枚举的内部,它的每个元素都关联(对应)着一个整数值。默认情况下,第一个对应整数 0,以后每个元素所对应的整数都递增 1。我们可以获取一个枚举变量的基础整数值,为此,必须先将它转换为基本类型。

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using 
System; 
using 
System.Collections.Generic; 
using 
System.Linq; 
using 
System.Text; 
   
namespace 
enumType 
    
enum 
Season     
// enum 类型定义在 class 外面 
    
        
Spring, Summer, Fall, Winter    
// 最后一个元素后面不加" ; " 
    
   
    
class 
Program 
    
        
static 
void 
Main(
string
[] args) 
        
            
Season currentSeason = Season.Summer; 
   
            
Console.WriteLine(
"Summer is {0}"
, (
int
)currentSeason); 
// 枚举的基础整数值 
        
    

 

运行后结果如下:

 也可以把一个特定的整数常量和一个枚举类型的文字常量关联起来。

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using 
System; 
using 
System.Collections.Generic; 
using 
System.Linq; 
using 
System.Text; 
   
namespace 
enumType 
    
enum 
Season     
// 定义为 short 可以节省空间 
    
        
Spring = 168, Summer, Fall, Winter    
// 最后一个元素后面不加" ; " 
    
   
    
class 
Program 
    
        
static 
void 
Main(
string
[] args) 
        
            
Console.WriteLine(
"Spring is {0}"
, (
int
)Season.Spring);     
// 168 
            
Console.WriteLine(
"Summer is {0}"
, (
int
)Season.Summer);     
// 169 依次 +1 
            
Console.WriteLine(
"Fall is {0}"
, (
int
)Season.Fall);         
// 170 
            
Console.WriteLine(
"Winter is {0}"
, (
int
)Season.Winter);     
// 171 
        
    

 

 运行后结果如下:

多个枚举文字常量可能拥有相同的基础值,可以像如下这样声明。

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using 
System; 
using 
System.Collections.Generic; 
using 
System.Linq; 
using 
System.Text; 
   
namespace 
enumType 
    
enum 
Season     
// enum 类型定义在 class 外面 
    
        
Spring, Summer, Fall, Autumn = Fall, Winter    
// 最后一个元素后面不加" ; " 
    
   
    
class 
Program 
    
        
static 
void 
Main(
string
[] args) 
        
            
Console.WriteLine(
"Spring is {0}"
, (
int
)Season.Spring);     
// 0 
            
Console.WriteLine(
"Summer is {0}"
, (
int
)Season.Summer);     
// 1 
            
Console.WriteLine(
"Fall is {0}"
, (
int
)Season.Fall);         
// 2 
            
Console.WriteLine(
"Autumn is {0}"
, (
int
)Season.Autumn);     
// 2 基础值相同 
            
Console.WriteLine(
"Winter is {0}"
, (
int
)Season.Winter);     
// 3 
        
    

 

运行后结果如下:

声明枚举时,枚举的文字常量将默认获得 int 类型的值。但可以选择枚举的基本类型。

 

没有整理与归纳的知识,一文不值!高度概括与梳理的知识,才是自己真正的知识与技能。 永远不要让自己的自由、好奇、充满创造力的想法被现实的框架所束缚,让创造力自由成长吧! 多花时间,关心他(她)人,正如别人所关心你的。理想的腾飞与实现,没有别人的支持与帮助,是万万不能的。
    本文转自wenglabs博客园博客,原文链接:http://www.cnblogs.com/arxive/p/5948127.html
,如需转载请自行联系原作者
你可能感兴趣的文章
InfoQ宣布成立CNUT容器技术俱乐部 欲连接中国容器社区
查看>>
GitHub服务中断24小时11分钟事故分析报告\n
查看>>
在微信小程序中绘制图表(part2)
查看>>
新成立的Scala中心将重点关注教育和Scala社区
查看>>
自从装了windows神器,再也不用羡慕mac了
查看>>
Next.js 7发布,构建速度提升40%
查看>>
京东Vue组件库NutUI 2.0发布:将支持跨平台!
查看>>
腾讯云副总裁答治茜:移动互联网破局要借助“三张网”
查看>>
给Web开发人员的以太坊入坑指南
查看>>
CMD、AMD、commonJs 规范的写法
查看>>
Facebook应用Moments使用C++实现跨平台代码共享
查看>>
跨域解决方案大全
查看>>
Laravel 学习笔记之 Query Builder 源码解析(下)
查看>>
3. 视图数据View Data和Balde模版 - Laravel从零开始教程
查看>>
Java泛型总结
查看>>
如何用CSS让一个容器水平垂直居中?
查看>>
react学习系列之states与props
查看>>
postgresql 查看page, index, tuple 详细信息
查看>>
DOM 事件深入浅出(二)
查看>>
Elixir Ecto: 范围数据类型
查看>>