C 预处理器中的舍入
我在预处理器中定义一些值。例如,
#define a 1000
#define b 0.5*a
当我尝试在需要整数的地方使用 b 时,出现错误。我不想总是在代码中强制转换 b
并在 #define
行中执行一次,这可能吗?
I am defining some values in the preprocessor. e.g.
#define a 1000
#define b 0.5*a
When I try to use b in a place where integer is needed I get an error. I don't want to cast b
always in my code and do it once in the #define
line, is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this: