C#中的枚举类型:其定义既可以放在 命名空间(namespace) 下,也可以放在 class 下。
枚举元素的默认数值是 int 类型,从 0 开始。一般将其存储类型修改成为 byte 类型,byte 类型占用空间小,但是数值必须要小于255,超出255,byte类型将无法存储。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CZBKe
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine((int)TheState.B);
Console.WriteLine(Test.rutu);
Console.ReadKey();
}
// 默认存储类型为 int
enum TheState
{
A,
B,
C,
F
}
// 修改该枚举类型的存储类型为 byte
enum Test:byte
{
open,
close,
dele,
rutu
}
}
}
C#枚举类型详解
本文深入探讨了C#中的枚举类型,包括其在命名空间和类下的定义方式,枚举元素的默认数值类型及如何修改存储类型为byte以节省空间。通过具体代码示例展示了枚举类型的使用。
1545

被折叠的 条评论
为什么被折叠?



