欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

C/C++ int数与多枚举值互转的实现

时间:2021-12-23 10:21:36|栏目:C代码|点击:

在C/C++在C/C++的开发中经常会遇到各种数据类型互转的情况,正常的互转有:单个枚举转int数,int数转float数,float数转double数等。但是我们有时也会遇到多个枚举值与数字互转的情形(例如多个算法类型枚举开启标志转成数字,这个数字来表示多个标志位,按位来表示)。这样一个数字就能表示很多个标志位了,针对内存较少的嵌入式设备,这么操作可以达到节约内存消耗,提高程序运行效率的目的。

Demo示例

demo核心知识点:通过位运算符(布尔位运算符:"~"、"&"、"|";移位运算符:"<<")实现int数与多枚举值互转。

Code:

#include <iostream>

using namespace std;


int nFlag = 0; //用移位表示各个枚举的开关
typedef enum
{
    TYPEA, //A开启,则nflag为1=0x00000001
    TYPEB, //B开启,则nflag为2=0x00000010
    TYPEC, //C开启,则nflag为4=0x00000100
    TYPED, //D开启,则nflag为8=0x00001000
    TYPENUM //枚举最大值,计数用
}EMTypeNum;

void int2enum (int n)
{
    if(n&(0x01<<TYPEA))
    {
     //为真
     cout << "TYPEA is ON\n";
    }
    else
    {
     //为假
     cout << "TYPEA is OFF\n";
    }
    
    if(n&(0x01<<TYPEB))
    {
     //为真
     cout << "TYPEB is ON\n";
    }
    else
    {
     //为假
     cout << "TYPEB is OFF\n";
    }
    
    if(n&(0x01<<TYPEC))
    {
     //为真
     cout << "TYPEC is ON\n";
    }
    else
    {
     //为假
     cout << "TYPEC is OFF\n";
    }

    if(n&(0x01<<TYPED))
    {
     //为真
     cout << "TYPED is ON\n";
    }
    else
    {
     //为假
     cout << "TYPED is OFF\n";
    }      
} 

void enum2int(EMTypeNum eMType, bool bOn)
{
    if(bOn)
    {
        nFlag |= (0x01 << eMType);
    }
    else
    {
        nFlag &= ~(0x01 << eMType);
    }
    cout << "nFlag:" << nFlag << endl;
}

int main() {

    int i = 0;
    for(i = 0; i < TYPENUM;i++)
    {
        enum2int((EMTypeNum)i, true);
        int2enum(nFlag);
        cout << endl;
    }
    
    
    for(i = 0; i < TYPENUM;i++)
    {
        enum2int((EMTypeNum)i, false);
        int2enum(nFlag); 
        cout << endl;
    }
    
    return 0;
}

Result:

nFlag:1
TYPEA is ON
TYPEB is OFF
TYPEC is OFF
TYPED is OFF

nFlag:3
TYPEA is ON
TYPEB is ON
TYPEC is OFF
TYPED is OFF

nFlag:7
TYPEA is ON
TYPEB is ON
TYPEC is ON
TYPED is OFF

nFlag:15
TYPEA is ON
TYPEB is ON
TYPEC is ON
TYPED is ON

nFlag:14
TYPEA is OFF
TYPEB is ON
TYPEC is ON
TYPED is ON

nFlag:12
TYPEA is OFF
TYPEB is OFF
TYPEC is ON
TYPED is ON

nFlag:8
TYPEA is OFF
TYPEB is OFF
TYPEC is OFF
TYPED is ON

nFlag:0
TYPEA is OFF
TYPEB is OFF
TYPEC is OFF
TYPED is OFF

上一篇:C++实现LeetCode(312.打气球游戏)

栏    目:C代码

下一篇:使用dc画笔画矩形、直线与椭圆示例

本文标题:C/C++ int数与多枚举值互转的实现

本文地址:http://www.codeinn.net/misctech/187863.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有