标签:imp str target cout 显示 而且 struct param 示例
c++11中引入了新的枚举类型---->强制枚举类型
// unscoped enum:
enum [identifier] [: type]
{enum-list};
// scoped enum:
enum [class|struct] [identifier] [: type]
{enum-list};
如下为两者的简单示例:
enum Test
{
test1,
test2
};
int a = test1; // 类型隐式转换,枚举常量无须限定
if (test1 == 0)
cout << "Hello world.";
enum class ErrorCode
{
ERROR_ONE,
ERROR_TWO,
ERROR_THREE
};
int num = 2;
num = static_cast<int>(ErrorCode::ERROR_ONE); // 类型需要显示转换,而且枚举常量必须限定
ErrorCode test = static_cast<ErrorCode>(12); // 其实这个整数已经超出范围了,但是居然合法
if (test == ErrorCode::ERROR_THREE)
cout << "It‘s impossible"
标签:imp str target cout 显示 而且 struct param 示例
原文地址:http://www.cnblogs.com/laogaoyang/p/6075564.html