C宏生成printf格式字符串
是否可以编写一个返回 printf 格式的宏(使用标记串联)? 例如,
#define STR_FMT(x) ...code-here...
STR_FMT(10)
扩展为 "%10s"
STR_FMT(15)
扩展为 "%15s"
。 .. 等等。
这样我就可以在 printf 中使用这个宏:
printf(STR_FMT(10), "*");
Is it possible to write a Macro (using token concatenation) that returns format for printf?
E.g.
#define STR_FMT(x) ...code-here...
STR_FMT(10)
expands to "%10s"
STR_FMT(15)
expands to "%15s"
...
etc.
So that I can use this macro inside a printf:
printf(STR_FMT(10), "*");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以,但我认为使用 printf() 动态指定字段大小和/或精度的功能可能会更好:
这具有不使用预处理器的优点,并且还可以让您使用变量或函数来指定字段宽度而不是文字。
如果您决定使用宏,请间接使用
#
运算符(如果您在其他地方使用的话,请使用##
运算符),如下所示:否则,如果您决定使用宏来指定字段宽度,您将得到不期望的行为(如 # 的应用程序是什么中所述) # 预处理器运算符和需要考虑的问题?)。
You can, but I think it might be better to use the capability
printf()
has to specify the field size and/or precision dynamically:This has the advantage of not using the preprocessor and also will let you use variables or functions to specify the field width instead of literals.
If you do decide to use macros instead, please use the
#
operator indirectly (and the##
operator if you use it elsewhere) like so:Otherwise if you decide to use macros to specify the field width, you'll get undesired behavior (as described in What are the applications of the ## preprocessor operator and gotchas to consider?).