本文介绍了C中变量名后的冒号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
可能的重复:
结构声明中的冒号是什么意思,例如:1、:7、:16 或 :32?
这是参考页面的 C 代码示例.
This is C code sample of a reference page.
signed int _exponent:8;
'8' 前面的冒号和'8' 本身是什么意思?
What's the meaning of the colon before '8' and '8' itself?
推荐答案
这是一个位域.它仅在 struct
定义中有效,这意味着系统将只使用 8 位作为整数.
It's a bitfield. It's only valid in a struct
definition, and it means that the system will only use 8 bits for your integer.
这篇关于C中变量名后的冒号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!