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的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程