这个宏替换多次应该会出错?
#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
当您使用宏时,您是在告诉预处理器将标识符(在您的情况下为 a、b、c)替换为宏后面的表达式。
这一系列定义告诉预处理器将 a 的内容替换为 b,将 b 的内容替换为 c,并将 c 的内容替换为 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
结果代码
当然会打印相同的值四次。
The resulting code is
which will of course print the same value four times.
在您的定义中,您对编译器说要替换 a->b、b->c、c->d 最后,您将用 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:
你看过预处理器的输出吗?
提示:您认为
预处理阶段后的生产线是什么样子?
Have you looked at the output of the preprocessor?
Hint: What do you think the line
looks like after the preprocessing stage?