int 变量:3;
在 CI 中看到了这段代码:
struct stud{
int b:3;
};
This was compiling in gcc. 变量b
和3
代表什么?另外,请解释一下:
的用法。
现在还有这样的迹象吗?
In C I saw this code:
struct stud{
int b:3;
};
This was compiling in gcc.
What do variables b
and 3
represent? Also, please explain the use of :
.
Are there anymore signs like this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这意味着
b
使用了int的3位。术语是“位域”。通常,它与使用相同或其他整数的其他位的其他变量组合。
这个想法是要么打包更难的值以节省空间,要么更常见地匹配来自某些硬件设备的数据。
It means that
b
uses 3 bits of the int. The term is "bit field".Usually this is combined with other variables using other bits of the same or other ints.
The idea is to either pack values harder to save space, or more common to match the data from some hardware device.