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的部分我没有听懂

上一篇:Java枚举类型(enum)详解


下一篇:MySQL user权限表及其他权限表详解