千家信息网

C++为什么枚举类​要比普通的枚举类型好

发表于:2024-11-17 作者:千家信息网编辑
千家信息网最后更新 2024年11月17日,这篇文章主要介绍"C++为什么枚举类要比普通的枚举类型好",在日常操作中,相信很多人在C++为什么枚举类要比普通的枚举类型好问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答
千家信息网最后更新 2024年11月17日C++为什么枚举类​要比普通的枚举类型好

这篇文章主要介绍"C++为什么枚举类要比普通的枚举类型好",在日常操作中,相信很多人在C++为什么枚举类要比普通的枚举类型好问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"C++为什么枚举类要比普通的枚举类型好"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

Enum.3:枚举类要比普通的枚举类型好

Reason(原因)

尽量减少意外性:经典的枚举类型太容易转换为整数了。

Example(示例)

void Print_color(int color);

enum Web_color { red = 0xFF0000, green = 0x00FF00, blue = 0x0000FF };
enum Product_info { red = 0, purple = 1, blue = 2 };

Web_color webby = Web_color::blue;

// Clearly at least one of these calls is buggy.
Print_color(webby);
Print_color(Product_info::blue);

Instead use an enum class:

而使用枚举类的时候:

void Print_color(int color);

enum class Web_color { red = 0xFF0000, green = 0x00FF00, blue = 0x0000FF };
enum class Product_info { red = 0, purple = 1, blue = 2 };

Web_color webby = Web_color::blue;
Print_color(webby); // Error: cannot convert Web_color to int.
Print_color(Product_info::red); // Error: cannot convert Product_info to int.
Enforcement(示例)

(简单)警告所有枚举类以外的枚举定义。

到此,关于"C++为什么枚举类要比普通的枚举类型好"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!

0