如何避免有关类型的 printf 警告

发布于 2024-11-27 07:12:29 字数 209 浏览 1 评论 0原文

我想知道是否有一个好方法来避免 gcc 对 printf 类型尖叫: '警告:格式'%d'需要'int'类型的参数,但参数12具有类型foo'

当你知道你在某处写了'typedef int foo'时,这非常烦人......

当然,我不是在看用于 gcc 修复( [-Wformat] )。

我想知道是否有一种方法可以避免警告,当然不用每次都进行强制转换!

I'm wondering if there is a nice way to avoid gcc to scream about printf types :
'warning: format ‘%d’ expects argument of type ‘int’, but argument 12 has type foo'

This is pretty anoying when you know that you wrote 'typedef int foo' somewhere ...

Of course, I'm not looking for the gcc fix for that ( [-Wformat] ).

I would like to know if there is a way to avoid the warning WITHOUT casting each time of course!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

缱绻入梦 2024-12-04 07:12:29

如果您有 typedef int foo,gcc 不应该警告您。如果 gcc 警告您,则很有可能 foo 实际上不是整数。

If you have typedef int foo, gcc shouldn't warn you. If gcc is warning you, there's a fair chance foo really isn't an integer.

暖伴 2024-12-04 07:12:29

这到处都是未定义的行为。 请勿使用!

char *fmt;
fmt = "%d%f%p%u\n";
printf(fmt, 1, 1, 1, 1, 1, 1, 1, 1, 1); /* fill stack with values */

This has Undefined Behaviour all over. Do not use!

char *fmt;
fmt = "%d%f%p%u\n";
printf(fmt, 1, 1, 1, 1, 1, 1, 1, 1, 1); /* fill stack with values */
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文