| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 700 人关注过本帖
标题:枚举方面的问题 望高手指教
只看楼主 加入收藏
wangbo1204
Rank: 1
等 级:新手上路
帖 子:18
专家分:0
注 册:2007-10-23
收藏
 问题点数:0 回复次数:2 
枚举方面的问题 望高手指教
  bgColor=#ffffff border=1>


using   System;
using   System.Collections.Generic;
using   System.Text;
namespace   枚举方法
{
        
        public   class   ParseTest
        {
                [FlagsAttribute]
                enum   Colors   {   Red   =   1,   Green   =   2,   Blue   =   4,   Yellow   =   8   };
                public   static   void   Main()
                {
                        Console.WriteLine("The   entries   of   the   Colors   Enum   are:");
                        foreach   (string   colorName   in   Enum.GetNames(typeof(Colors)))
                        {
                                Console.WriteLine("{0}={1}",   colorName,
                                                                                          Convert.ToInt32(Enum.Parse(typeof(Colors),   colorName)));
                        }
                        Console.WriteLine();
                        Colors   myOrange   =   (Colors)Enum.Parse(typeof(Colors),   "Red,   Yellow");
                        Console.WriteLine("The   myOrange   value   {1}   has   the   combined   entries   of   {0}",myOrange,   Convert.ToInt64(myOrange));
                }
        }
}
这个程序中:
这句
Console.WriteLine("{0}={1}",   colorName,
                                                                                          Convert.ToInt32(Enum.Parse(typeof(Colors),   colorName)));
和这句:
Console.WriteLine("The   myOrange   value   {1}   has   the   combined   entries   of   {0}",myOrange,   Convert.ToInt64(myOrange));
的结果为什么会是前一个数字和符号一一对应 而后一个却是将两个数值相加呢?


     

     
                                    

                              
  bgColor=#ffffff border=1>

        
               
         
               
                           
                        
                                               
                                
 
                        
                        
                                                  
               
        

 
colorName)));
                        }
                        Console.WriteLine();
                        Colors   myOrange   =   (Colors)Enum.Parse(typeof(Colors),   "Red,   Yellow");
                        Console.WriteLine("The   myOrange   value   {1}   has   the   combined   entries   of   {0}",myOrange,   Convert.ToInt64(myOrange));
                }
        }
}
这个程序中  
搜索更多相关主题的帖子: 枚举 指教 
2007-12-04 10:02
doughty
Rank: 1
等 级:新手上路
帖 子:372
专家分:0
注 册:2007-10-18
收藏
得分:0 
请不要把同一个问题发贴两遍,,..........
2007-12-04 10:07
virusswb
Rank: 1
等 级:新手上路
威 望:1
帖 子:342
专家分:0
注 册:2005-8-6
收藏
得分:0 
Enum.Parse
看一下这个方法的解释就会明白了

jorden008@
2007-12-04 11:44
快速回复:枚举方面的问题 望高手指教
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016802 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved