C++中的enum的名字空间

C++中的enumC#中的非常的不同,最大的不同在于C++中的enum没有名字空间。

C#

class Program

    {

        enum Motion

        {

            Start,

            Running,

            Stopping

        }

 

        static void Main(string[] args)

        {

            Motion m = Motion.Running;

        }

}

 

 

C++

enum Motion

{

    Start,

    Running,

    Stopping

};

 

int _tmain(int argc, _TCHAR* argv[])

{

    Motion m = Running;

return 0;

}

 

见上例,在C++Motion并未起作用,使得enum内的元素全局有效,容易造成符号冲突。如下面的情况

enum Motion

{

    Start,

    Running,

    Stopping

};

 

void Start()

{

    //...

}

 

int _tmain(int argc, _TCHAR* argv[])

{

    Motion m = Running;

return 0;

}

这里就会报错误,提示Start重复定义。还有一种情况也很常见,

class C

{

public:

    enum Motion

    {

        Start,

        Running,

        Stopping

    };

 

    enum Status

    {

        Go,

        Stopping

    };

};

这里同样会提示错误,Stopping重复定义,这两种情况都没有比较好的解决方法。

Stackoverflow里提供了一些解决方法,我们可以在以后的实际中选择一个适合的折中的解决办法。

ExpandedBlockStart.gif 代码
//  oft seen hand-crafted name clash solution
enum  eColors { cRed, cColorBlue, cGreen, cYellow, cColorsEnd };
enum  eFeelings { cAngry, cFeelingBlue, cHappy, cFeelingsEnd };
void  setPenColor(  const  eColors c ) {
    
switch  (c) {
        
default : assert( false );
        
break case  cRed:  // ...
         break case  cColorBlue:  // ...
        
// ...
    }
 }


//  (ab)using a class as a namespace
class  Colors {  enum  e { cRed, cBlue, cGreen, cYellow, cEnd }; };
class  Feelings {  enum  e { cAngry, cBlue, cHappy, cEnd }; };
void  setPenColor(  const  Colors::e c ) {
    
switch  (c) {
        
default : assert( false );
        
break case  Colors::cRed:  // ...
         break case  Colors::cBlue:  // ...
        
// ...
    }
 }


 
//  a real namespace?
  namespace  Colors {  enum  e { cRed, cBlue, cGreen, cYellow, cEnd }; };
 
namespace  Feelings {  enum  e { cAngry, cBlue, cHappy, cEnd }; };
 
void  setPenColor(  const  Colors::e c ) {
    
switch  (c) {
        
default : assert( false );
        
break case  Colors::cRed:  // ...
         break case  Colors::cBlue:  // ...
        
// ...
    }
  }

原文见:

http://stackoverflow.com/questions/482745/namespaces-for-enum-types-best-practices

 

 

转载于:https://www.cnblogs.com/ouzi/archive/2011/02/14/1954220.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值