C宏生成printf格式字符串

发布于 2024-09-28 13:15:44 字数 320 浏览 1 评论 0原文

是否可以编写一个返回 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 技术交流群。

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

发布评论

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

评论(2

記柔刀 2024-10-05 13:15:45
#define STR_FMT(x) "%" #x "s"
#define STR_FMT(x) "%" #x "s"
昇り龍 2024-10-05 13:15:44

可以,但我认为使用 printf() 动态指定字段大小和/或精度的功能可能会更好:

#include <stdio.h>

int main(int argc, char* argv[])
{
    // specify the field size dynamically
    printf( ":%*s:\n", 10, "*");
    printf( ":%*s:\n", 15, "*");

    // specify the precision dynamically
    printf( "%.*s\n", 10, "******************************************");
    printf( "%.*s\n", 15, "******************************************");

    return 0;
}

这具有不使用预处理器的优点,并且还可以让您使用变量或函数来指定字段宽度而不是文字。


如果您决定使用宏,请间接使用 # 运算符(如果您在其他地方使用的话,请使用 ## 运算符),如下所示:

// macros to allow safer use of the # and ## operators
#ifndef STRINGIFY
#define STRINGIFY2( x) #x
#define STRINGIFY(x) STRINGIFY2(x)
#endif

#define STR_FMTB(x) "%" STRINGIFY(x) "s"

否则,如果您决定使用宏来指定字段宽度,您将得到不期望的行为(如 # 的应用程序是什么中所述) # 预处理器运算符和需要考虑的问题?)。

You can, but I think it might be better to use the capability printf() has to specify the field size and/or precision dynamically:

#include <stdio.h>

int main(int argc, char* argv[])
{
    // specify the field size dynamically
    printf( ":%*s:\n", 10, "*");
    printf( ":%*s:\n", 15, "*");

    // specify the precision dynamically
    printf( "%.*s\n", 10, "******************************************");
    printf( "%.*s\n", 15, "******************************************");

    return 0;
}

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:

// macros to allow safer use of the # and ## operators
#ifndef STRINGIFY
#define STRINGIFY2( x) #x
#define STRINGIFY(x) STRINGIFY2(x)
#endif

#define STR_FMTB(x) "%" STRINGIFY(x) "s"

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?).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文