C++学习笔记|Enum枚举类型|Cherno C++ Tutorials
2021/7/15 22:07:31
本文主要是介绍C++学习笔记|Enum枚举类型|Cherno C++ Tutorials,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include <iostream> class Log{ public: enum Level{ Error=0,Warning,Info }; private: Level m_level=Info;//the prefix indicates member variable so you can differentiate it from local variables public: void Error_msg(const char * msg){ if(m_level>=Error) std::cout<<"[Error] "<<msg<<std::endl; } void Warning_msg(const char * msg){ if(m_level>=Warning) std::cout<<"[Warning] "<<msg<<std::endl; } void Info_msg(const char * msg){ if(m_level>=Info) std::cout<<"[Info] "<<msg<<std::endl; } void SetLevel(Level level){ m_level=level; } }; int main(){ Log log; log.SetLevel(Log::Error); log.Error_msg("error test"); // log.SetLevel(Log::Warning); log.Warning_msg("warning test"); log.SetLevel(Log::Info); log.Info_msg("info test"); return 0; }
https://www.bilibili.com/video/BV1VJ411M7WR?p=24
枚举类型是一种用户自定义值集的数据类型
不同类型的枚举类型变量不能相互赋值
枚举类型变量之间可以比较大小
可以将枚举类型变量赋给整形变量
但是不能把整形变量赋给枚举类型变量(当然也可以强制转换)
至于视频里的 把枚举类型定义放在class里 还有最后的Log::Error涉及namespace的部分我没有听懂
这篇关于C++学习笔记|Enum枚举类型|Cherno C++ Tutorials的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-23DevExpress 怎么实现右键菜单(Context Menu)显示中文?-icode9专业技术文章分享
- 2024-12-22怎么通过控制台去看我的页面渲染的内容在哪个文件中呢-icode9专业技术文章分享
- 2024-12-22el-tabs 组件只被引用了一次,但有时会渲染两次是什么原因?-icode9专业技术文章分享
- 2024-12-22wordpress有哪些好的安全插件?-icode9专业技术文章分享
- 2024-12-22wordpress如何查看系统有哪些cron任务?-icode9专业技术文章分享
- 2024-12-21Svg Sprite Icon教程:轻松入门与应用指南
- 2024-12-20Excel数据导出实战:新手必学的简单教程
- 2024-12-20RBAC的权限实战:新手入门教程
- 2024-12-20Svg Sprite Icon实战:从入门到上手的全面指南
- 2024-12-20LCD1602显示模块详解