MCPcopy Create free account
hub / github.com/EricPengShuai/Interview / Color2

Enum Color2

base_code/enum.cpp:46–51  ·  view source on GitHub ↗

* @brief C++11的枚举类 * 下面等价于enum class Color2:int */

Source from the content-addressed store, hash-verified

44 * 下面等价于enum class Color2:int
45 */
46enum class Color2:int
47{
48 RED = 2,
49 YELLOW,
50 BLUE
51};
52
53enum class Color3:char; // 前向声明
54

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected