“短”的 C 数字常量后缀
可能的重复:
如何用 C++ 编写短文字?
C 中是否有 short int
数值常量的后缀? 有 u
、l
、d
和 f
表示无符号、长整型、双精度和浮点型,但我可以找不到任何短。
我做了一些非常低杠杆的位干预,我需要大小为 2 个字节的数值常量。我工作的系统保证 short int
是 2 个字节,所以这不是问题。它是嵌入式的,所以请不要为有关可移植性的建议而烦恼。
Possible Duplicate:
How do I write a short literal in C++?
Is there a suffix for short int
numerical constants in C?
There are u
, l
, d
, and f
for unsigned, long, double and float, but I could not find any for short.
I do some very low lever bit meddling and I need numerical constants with the size of 2 bytes. The system I work on guarantees that short int
s are 2 bytes, so that is not a problem. It's embedded, so please don't bother with suggestions about portability.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查C标准,shorts不存在这样的前缀。
Checking the C standard, no such prefix exist for shorts.