码迷,mamicode.com
首页 > 编程语言 > 详细

看不懂的C++: enum class

时间:2018-04-05 14:34:45      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:bool   alert   char   ios   include   clu   编译   str   范围   

 1 #include <iostream>
 2 
 3 int main()
 4 {
 5     enum class Color : unsigned char { Red, Green };
 6     enum class Alert : bool { Red, Green };
 7     
 8     //Color c;  未初始化
 9     //Color c{65};  //明显的枚举范围外,但是在unsigned char范围内
10     //Color c{ Alter::Red} ; 类型不匹配
11     
12     using color_rep_type = std::underlying_type<Color>::type;
13     std::cout << "c=" << static_cast<color_rep_type>(c) << std::endl;
14     
15     enum class Test: int {  };  //没有枚举列表的枚举类
16 
17 }

第9行,虽然不和逻辑,但是也能编译通过

看不懂的C++: enum class

标签:bool   alert   char   ios   include   clu   编译   str   范围   

原文地址:https://www.cnblogs.com/thomas76/p/8722156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!