有关C#枚举的问答集锦:使用情景

之前介绍了C#枚举的基础与赋值相关的知识,本文继续介绍有关C#枚举的一些问答。

为正宁等地区用户提供了全套网页设计制作服务,及正宁网站建设行业解决方案。主营业务为成都做网站、网站设计、外贸营销网站建设、正宁网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!

Q:我定义了一个这样的枚举:

 
 
 
  1. // Code #20  
  2. public enum FontStyle  
  3. {  
  4.     Bold,  
  5.     Italic,  
  6.     Regular,  
  7.     Strikethrough,  
  8.     Underline  
  9. }  

我用它来指定字体的风格,但我遇到了麻烦。你知道,字体可以同时拥有枚举里面所列举的一种或者多种风格,那么,我如何为字体同时指定多种风格呢?

A:这个时候你就需要位枚举(Bit Flags),把Code #20修改一下:

 
 
 
  1. // Code #21  
  2. // I am using the FlagsAttribute to identify a bit flags.  
  3. [Flags]  
  4. public enum FontStyle  
  5. {  
  6.     Bold        = 0x0001,  
  7.     Italic        = 0x0002,  
  8.     Regular        = 0x0004,  
  9.     Strikethrough    = 0x0010,  
  10.     Underline        = 0x0020  
  11. }  

现在,你可以通过按位或运算来为字体指定多种风格了:

 
 
 
  1. // Code #22  
  2. // See Code #21 for FontStyle.  
  3. Font f = new Font(  
  4.       FontFamily.GenericSansSerif,  
  5.       12.0F,  
  6.       FontStyle.Italic | FontStyle.Underline  
  7.       );  

--------------------------------------------------------------------------------

Q:位枚举同样存在类似于Code #15的恶作剧吧?

A:是的,例如:

 
 
 
  1. // Code #23  
  2. // See Code #21 for FontStyle.  
  3. class Program  
  4. {  
  5.     static void Main()  
  6.     {  
  7.         Bar(FontStyle.Regular | (FontStyle)0x0400);  
  8.     }  
  9.  
  10.     static void Bar(FontStyle fs)  
  11.     {  
  12.         // Code here  
  13.     }  
  14. }  

--------------------------------------------------------------------------------

Q:那么,System.Enum.IsDefine方法是否还能应对呢?

A:不能。位枚举成员并不具备排他性,多个成员可以通过按位或运算组合起来。而System.Enum.IsDefine方法只能判断枚举变量的值是否为某一已定义的枚举成员。请看如下代码:

 
 
 
  1. // Code #24  
  2. // See Code #21 for FontStyle.  
  3. FontStyle fs1 = FontStyle.Bold | FontStyle.Italic | FontStyle.Underline;  
  4. Console.WriteLine(Enum.IsDefine(typeof(FontStyle), fs1));  
  5.  
  6. FontStyle fs2 = FontStyle.Regular | (FontStyle)0x0400;  
  7. Console.WriteLine(Enum.IsDefine(typeof(FontStyle), fs2));  
  8.  
  9. // Output:  
  10. // false  
  11. // false  

我们对代码的输出毫无疑问,因为fs1和fs2都不是一个单独的枚举成员。但这不是我们所追求的答案,我们希望区别对待fs1和fs2,至少我们不希望fs2中的捣蛋家伙——(FontStyle)0x0400——在我们的程序中搞破坏!

--------------------------------------------------------------------------------

Q:那么,我们是否有办法隔离这些捣蛋鬼呢?

A:Of course!我们同样可以使用条件判断语句来处理,但做法将与Code #17和Code #18有所不同。现在我们把Code #23改进如下:

 
 
 
  1. // Code #25  
  2. // See Code #21 for FontStyle.  
  3. class Program  
  4. {  
  5.     static void Main()  
  6.     {  
  7.         Bar(FontStyle.Regular | (FontStyle)0x0400);  
  8.     }  
  9.  
  10.     static void Bar(FontStyle fs)  
  11.     {  
  12.         if ((fs & FontStyle.Bold) != 0)  
  13.         {  
  14.             // Do something associated with bold  
  15.         }  
  16.  
  17.         if ((fs & FontStyle.Italic) != 0)  
  18.         {  
  19.             // Do something associated with italic  
  20.         }  
  21.  
  22.         // Other conditional code continues here  
  23.     }  
  24. }  

我们把枚举变量与某一特定的位枚举成员进行按位与运算,若结果不为0则表明枚举变量中包含着该位枚举成员。当然,你也可以为自己的代码写一组这样的方法:

 
 
 
  1. // Code #26  
  2. // See Code #21 for FontStyle.  
  3. static bool ContainsBold(FontStyle fs)  
  4. {  
  5.     if ((fs & FontStyle.Bold) != 0)  
  6.         return true;  
  7.     else 
  8.         return false;  
  9. }  
  10.  
  11. static bool ContainsItalic(FontStyle fs)  
  12. {  
  13.     if ((fs & FontStyle.Italic) != 0)  
  14.         return true;  
  15.     else 
  16.         return false;  
  17. }  
  18.  
  19. // Other similar methods continue here  

又或者你可以写一个这样的方法:

 
 
 
  1. // Code #27  
  2. // See Code #21 for FontStyle.  
  3. static bool ContainsMember(FontStyle fs, FontStyle menber)  
  4. {  
  5.     if ((fs & member) != 0)  
  6.         return true;  
  7.     else 
  8.         return false;  
  9. }  

如果你只希望判断某一个枚举变量里面是否包含捣蛋鬼,你可以写一个这样的方法:

 
 
 
  1. // Code #28  
  2. // See Code #21 for FontStyle.  
  3. static bool ContainsPranksters(FontStyle fs)  
  4. {  
  5.     if ((fs < FontStyle.Bold) || (fs > (FontStyle)0x0037))  
  6.         return true;  
  7.  
  8.     if (fs == (FontStyle)0x0008 ||  
  9.         fs == (FontStyle)0x0009 ||  
  10.         fs == (FontStyle)0x0018 ||  
  11.         fs == (FontStyle)0x0019 ||  
  12.         fs == (FontStyle)0x0028 ||  
  13.         fs == (FontStyle)0x0029)  
  14.         return true;  
  15.  
  16.     return false;  
  17. }  

留个“作业”吧,知道为何这样可以判断出是否有捣蛋鬼吗?当然,如果你想到了更好的方法,记住要告诉我哟!

--------------------------------------------------------------------------------

Q:慢着!你那个“我们把枚举变量与某一特定的位枚举成员进行按位与运算,若结果不为0则表明枚举变量中包含着该位枚举成员”,在以下的情况显然不成立的:

 
 
 
  1. // Code #35  
  2. [Flags]  
  3. enum Music  
  4. {  
  5.     Jazz = 0x00,  
  6.     Rock = 0x01,  
  7.     Country = 0x02,  
  8.     Classic = 0x03  
  9. }  
  10.  
  11. static void Main()  
  12. {  
  13.     Music m = Music.Rock | Music.Jazz;  
  14.     int r = (int)(m & Music.Classic);  
  15.     Console.WriteLine(r);  
  16. }  
  17.  

该代码的输出恰恰就为0,然而m却不包含Music.Classic!

A:Good question!也正如你所看到的,这种做法其实与位枚举成员的值是如何被赋予息息相关的。那么,我们应该如何为位枚举的成员赋值呢?由于位枚举成员的值和位运算都直接与二进制相关,所以,我们不妨从二进制的角度去探索一下如何恰当的为位枚举的成员赋值。

试想一下,如果我们能把二进制值的字面特征与位枚举成员关联起来,使得我们能够直接从二进制值的字面特征判断位枚举成员的存在与否该多好呀!

考察你的Music枚举,它有4个成员,那么我们把二进制值的数位设定为4,即[D][C][B][A]型;并规定每一个数位代表该一个枚举成员,即A代表Music.Jazz、B代表Music.Rock、C代表Music.Country、D代表Music.Classic;那么,某个数位的值为1就代表其对应的枚举成员存在,为0则不存在。现在,假如Music的某个变量m的二进制值为0110,我们就可以肯定的说,m中包含着Music.Rock和Music.Country,因其B、C数位的值均为1。

那么这些跟为位枚举成员赋值有什么关系呢?从上面的讨论可以知道,Music各个成员的二进制值分别为:Music.Jazz为0001、Music.Rock为0010、Music.Country为0100、Music.Classic为1000。把这些值转换为十六进制值并赋予对应的成员:

 
 
 
  1. // Code #36  
  2. [Flags]  
  3. enum Music  
  4. {  
  5.     Jazz = 0x01,  
  6.     Rock = 0x02,  
  7.     Country = 0x04,  
  8.     Classic = 0x08  
  9. }  
  10.  

这样,你就可以采用我所提到的方法来验证某个枚举变量中是否包含着特定的枚举成员了。

--------------------------------------------------------------------------------

Q:如何把C#枚举类型转换(解析)成字符串类型?

A:最简单的方法就是使用System.Enum的

 
 
 
  1. public override string ToString();  

方法,或者把枚举类型转换为IConvertible接口,再调用该接口的

 
 
 
  1. string ToString(IFormatProvider provider);  

方法。此时你将得到枚举成员的字面值的字符串:

 
 
 
  1. // Code #29  
  2. // See Code #01 for Alignment.  
  3. // See Code #21 for FontStyle.  
  4. static void Main()  
  5. {  
  6.     Alignment a = Alignment.Right;  
  7.     Console.WriteLine("Alignment is {0}.", a.ToString());  
  8.  
  9.     FontStyle fs = FontStyle.Bold | FontStyle.Underline;  
  10.     Console.WriteLine("FontStyle is {0}.", fs.ToString());  
  11. }  
  12.  
  13. // Output:  
  14. // Alignment is Right.  
  15. // FontStyle is Bold, Underline.  

如果你希望输出枚举成员的值,那么你可以手动指定格式参数:

 
 
 
  1. // Code #30  
  2. // See Code #01 for Alignment.  
  3. // See Code #21 for FontStyle.  
  4. static void Main()  
  5. {  
  6.     Alignment a = Alignment.Right;  
  7.     // Represents Alignment in decimal form.  
  8.     Console.WriteLine("Alignment is {0}.", a.ToString("d"));  
  9.     // Represents Alignment in hexadecimal without a leading "0x".  
  10.     Console.WriteLine("Alignment is {0}.", a.ToString("x"));  
  11.  
  12.     FontStyle fs = FontStyle.Bold | FontStyle.Underline;  
  13.     // Represents FontStyle in decimal form.  
  14.     Console.WriteLine("FontStyle is {0}.", fs.ToString("d"));  
  15.     // Represents FontStyle in hexadecimal without a leading "0x".  
  16.     Console.WriteLine("FontStyle is {0}.", fs.ToString("x"));  
  17. }  
  18.  
  19. // Output:  
  20. // Alignment is 2.  
  21. // Alignment is 00000002.  
  22. // FontStyle is 33.  
  23. // FontStyle is 00000021.  

除此之外,你还可以使用System.Enum的

 
 
 
  1. public static string Format(  
  2.             Type enumType,  
  3.             object value,  
  4.             string format  
  5.             );  
  6.  

方法:

 
 
 
  1. // Code #31  
  2. // See Code #01 for Alignment.  
  3. static void Main()  
  4. {  
  5.     Alignment a = Alignment.Right;  
  6.     Console.WriteLine(  
  7.         "Alignment is 0x{0}.",  
  8.       System.Enum.Format(typeof(Alignment), a, "x")  
  9.         );  
  10.     Console.WriteLine("Alignment is 0x{0:x}.", a);  
  11. }  
  12.  
  13. // Output:  
  14. // Alignment is 0x00000002.  
  15. // Alignment is 0x00000002.  

另外,你还可以通过System.Enum的

 
 
 
  1. public static string[] GetNames(Type enumType);  
  2.  

来获取枚举所有成员的字面值:

 
 
 
  1. // Code #32  
  2. // See Code #01 for Alignment.  
  3. static void Main()  
  4. {  
  5.     string[] names = Enum.GetNames(typeof(Alignment));  
  6.     foreach(string name in names)  
  7.         Console.WriteLine(name);  
  8. }  
  9.  
  10. // Output:  
  11. // Left  
  12. // Center  
  13. // Right  

--------------------------------------------------------------------------------

Q:如果我得到一个表示枚举成员的字符串,我如何将其解析为对应枚举类型呢?

A:这时你就需要System.Enum的

 
 
 
  1. public static object Parse(  
  2.             Type enumType,  
  3.             string value,  
  4.             bool ignoreCase  
  5.             );  
  6.  

方法了:

 
 
 
  1. // Code #33  
  2. // See Code #01 for Alignment.  
  3. // See Code #21 for FontStyle.  
  4. static void Main()  
  5. {  
  6.     string name = "Right";  
  7.     Alignment a = (Alignment)Enum.Parse(typeof(Alignment), name, false);  
  8.  
  9.     Console.WriteLine(a.ToString());  
  10.  
  11.     string names = "Bold, Italic, Underline";  
  12.     FontStyle fs = (FontStyle)Enum.Parse(typeof(FontStyle), names, false);  
  13.  
  14.     Console.WriteLine(fs.ToString());  
  15. }  
  16.  
  17. // Output:  
  18. // Right  
  19. // Bold, Italic, Underline  

--------------------------------------------------------------------------------

Q:枚举类型为我们编码提供了巨大的便利,什么情况下我们不应该使用枚举呢?

A:首先你应该清楚枚举类型在编程中充当一个什么样的角色。在我看来,枚举类型表达了一种稳定的分类标准。当你查看.NET Framework BCL中的枚举类型,你会发现它们几乎没有任何改变的可能或者趋势,表现出一种稳定性。所以,当你所要表达的分类标准也同样具备这种稳定性时,你就可以考虑枚举类型了。那么什么情况下不使用枚举呢?一般说来,当分类标准不闭合时——即新的子分类随时有可能产生或者现有子分类随时有可能被替换——你就应该考虑使用其他的方式来表达了。

下面让我们来看一个薪酬自动管理系统的一部分,假设某公司现有雇员种类为:

1. Programmer
2. Salesman
3. Manager

相关代码如下:

 
 
 
  1. // Code #34  
  2. public enum EmployeeKind  
  3. {  
  4.     Programmer,  
  5.     Salesman,  
  6.     Manager  
  7. }  
  8.  
  9. public class Employee  
  10. {  
  11.     public Employee(string name, EmployeeKind kind)  
  12.     {  
  13.         Kind = kind;  
  14.     }  
  15.  
  16.     private string m_Name;  
  17.     public string Name  
  18.     {  
  19.         get { return m_Name; }  
  20.     }  
  21.  
  22.     public readonly EmployeeKind Kind;  
  23.  
  24.     public double GetPayment()  
  25.     {  
  26.         switch(Kind)  
  27.         {  
  28.             case EmployeeKind.Programmer:  
  29.                 // Return payment  
  30.             case EmployeeKind.Salesman:  
  31.                 // Return payment  
  32.             case EmployeeKind.Manager:  
  33.                 // Return payment  
  34.         }  
  35.     }  
  36. }  

假如该公司正处于成长期,那么公司的组织结构发生改变是家常便饭之事。但公司每一次改变组织结构,这样的系统就要经历源代码修改、重新编译然后再部署的过程!而且,如果公司实行了新的绩效评估方案,并把薪酬计算与绩效追踪挂钩,那么GetPayment方法将进一步壮大,以至于最终其代码晦涩难懂。你当然可以把GetPayment分割为子方法,但并没有什么实质的改变。再想一想,如果将来公司打算把薪酬系统与银行挂钩,提供薪资直接银行划拨,那将又会是怎么一番局面呢?

以上就总结了一些C#枚举应用情景的相关问答。

分享题目:有关C#枚举的问答集锦:使用情景
分享URL:http://www.shufengxianlan.com/qtweb/news36/254136.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联