1. 程式人生 > >看不懂的C++: enum class

看不懂的C++: enum class

class AR cas iostream char erl 但是 main har

 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