将位域转换为int

将位域转换为int,第1张

概述我有这样一种方式: typedef struct morder { unsigned int targetRegister : 3; unsigned int targetMethodOfAddressing : 3; unsigned int originRegister : 3; unsigned int originMethodOfAddressing : 3 我有这样一种方式:
typedef struct morder {    unsigned int targetRegister : 3;    unsigned int targetmethodOfAddressing : 3;    unsigned int originRegister : 3;    unsigned int originMethodofAddressing : 3;    unsigned int oCode : 4;} bitset;

我也有int数组,我想从这个数组中获取int值,表示这个位字段的实际值(这实际上是我拥有它的一部分的一些机器字,我想要int的表示形式整个字).

非常感谢.

解决方法 你可以使用联合:
typedef union bitsetConvertor {    bitset bs;    uint16_t i;} bitsetConvertor;bitsetConvertor convertor;convertor.i = myInt;bitset bs = convertor.bs;

或者你可以使用一个演员:

bitset bs = *(bitset *)&myInt;

或者你可以使用联合中的匿名结构:

typedef union morder {    struct {        unsigned int targetRegister : 3;        unsigned int targetmethodOfAddressing : 3;        unsigned int originRegister : 3;        unsigned int originMethodofAddressing : 3;        unsigned int oCode : 4;    };    uint16_t intRepresentation;} bitset;bitset bs;bs.intRepresentation = myInt;
总结

以上是内存溢出为你收集整理的将位域转换为int全部内容,希望文章能够帮你解决将位域转换为int所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1252488.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存