C 预处理器中的舍入

发布于 2024-09-10 07:02:55 字数 178 浏览 2 评论 0原文

我在预处理器中定义一些值。例如,

#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

好倦 2024-09-17 07:02:55

试试这个:

#define a 1000
#define b (a/2)

Try this:

#define a 1000
#define b (a/2)
青衫负雪 2024-09-17 07:02:55
#define b ((int)(a * 0.5))
#define b ((int)(a * 0.5))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文