博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c++11 enum class用法
阅读量:5127 次
发布时间:2019-06-13

本文共 451 字,大约阅读时间需要 1 分钟。

 

 


使用过的一个enum class的用法:

enum class EModel : int
    {
        Model1,
        Model2,
        Model3,
        Other = 4,
    };
    
    EModel SRiverGetTorqueModelType(const int  typeCount)
    {
        switch (typeCount)
        {
        case 0:
            return EModel::Model1;
            break;
        case 1:
            return EModel::Model3;
            break;
        case 2:
            return EModel::Model2;
            break;
        default:
            return EModel::Model1;
        }
    }
int typeCount = xxx;    
if (EModel::Model1 == SRiverGetTorqueModelType(typeCount))
{
}


 

转载于:https://www.cnblogs.com/butterflybay/p/11398241.html

你可能感兴趣的文章
Shader1.0学习笔记之SetTexture
查看>>
数据结构学习-数组A[m+n]中依次存放两个线性表(a1,a2···am),(b1,b2···bn),将两个顺序表位置互换...
查看>>
《浪潮之巅》七八章笔记
查看>>
【Leetcode】Next Permutation
查看>>
网络对抗作业1
查看>>
HTML5: HTML5 服务器发送事件(Server-Sent Events)
查看>>
小程序:小程序绑定微信开放平台帐号|公众号关联小程序
查看>>
Python中下划线的5种含义
查看>>
hdu 4180
查看>>
Mac使用Clion配置OpenGL
查看>>
[HDU4630]No Pain No Game
查看>>
javascript oo实现
查看>>
标准控件(四)——HyperLink,Image
查看>>
深度优先搜索(DFS)
查看>>
Service的理解
查看>>
memcache入门
查看>>
Redis 集合(Set)
查看>>
休息一下。。。。
查看>>
20190328课堂作业<SQL语句>
查看>>
Android(安卓) 长按 搜索键、返回键 锁屏或解锁的设置方法
查看>>