这个宏替换多次应该会出错?

发布于 2024-11-13 03:10:23 字数 204 浏览 2 评论 0原文

#define a b
#define b c
#define c d
main()
{
    int a=192;
    printf("%d\n",a);
    printf("%d\n",b);
    printf("%d\n",c);
    printf("%d\n",d);
}

全部输出为 192。 a、b、c如何声明?

#define a b
#define b c
#define c d
main()
{
    int a=192;
    printf("%d\n",a);
    printf("%d\n",b);
    printf("%d\n",c);
    printf("%d\n",d);
}

output is 192 for all. How a,b,c are declared?

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

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

发布评论

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

评论(4

冧九 2024-11-20 03:10:23

当您使用宏时,您是在告诉预处理器将标识符(在您的情况下为 a、b、c)替换为宏后面的表达式。

这一系列定义告诉预处理器将 a 的内容替换为 b,将 b 的内容替换为 c,并将 c 的内容替换为 d。

所以你得到的是多次打印的相同值

main()
{
    int d = 192;
    printf("%d\n", d);
    printf("%d\n", d);
    printf("%d\n", d);
    printf("%d\n", d);
}

when you use a macro, you are telling the pre processor to replace the identifier (in your case, a, b, c) with the expression following the macro.

So that series of defines, tells the preprocessor to replace the contents of a with b, replace the contents of b with c, and replace the contents of c with d.

so what you get, is the same value being printed for times

main()
{
    int d = 192;
    printf("%d\n", d);
    printf("%d\n", d);
    printf("%d\n", d);
    printf("%d\n", d);
}
缘字诀 2024-11-20 03:10:23

结果代码

main()
{
    int d=192;
    printf("%d\n",d);
    printf("%d\n",d);
    printf("%d\n",d);
    printf("%d\n",d);
}

当然会打印相同的值四次。

The resulting code is

main()
{
    int d=192;
    printf("%d\n",d);
    printf("%d\n",d);
    printf("%d\n",d);
    printf("%d\n",d);
}

which will of course print the same value four times.

<逆流佳人身旁 2024-11-20 03:10:23

在您的定义中,您对编译器说要替换 a->b、b->c、c->d 最后,您将用 d 替换所有内容,

因此您的结果代码(在预处理器之后)是:

main()
{
    int d=192;
    printf("%d\n",d);
    printf("%d\n",d);
    printf("%d\n",d);
    printf("%d\n",d);
}

In your defines you are saying to the compiler to substitute a->b, b->c, c->d in the end you are substituting everything with d

So your result code (after the preprocessor) is:

main()
{
    int d=192;
    printf("%d\n",d);
    printf("%d\n",d);
    printf("%d\n",d);
    printf("%d\n",d);
}
無處可尋 2024-11-20 03:10:23

你看过预处理器的输出吗?

提示:您认为

int a=192;

预处理阶段后的生产线是什么样子?

Have you looked at the output of the preprocessor?

Hint: What do you think the line

int a=192;

looks like after the preprocessing stage?

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