了解这种情况下的预处理器指令吗?
#define swap(a,b,c)(int t;t=a;a=b;b=t;);
void main()
{
int x=10,y=20;
swap (x,y,int);
printf("%d %d\n",x,y);
}
输出是什么以及为什么?
#define swap(a,b,c)(int t;t=a;a=b;b=t;);
void main()
{
int x=10,y=20;
swap (x,y,int);
printf("%d %d\n",x,y);
}
What is the output and why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好像这样重写你的宏:
Better to re-write your macro like this:
根据用法以及宏中未使用
c
的事实,看起来宏中存在拼写错误。不应使用int
,而应使用c
:事实上,虽然此“修复”将为您提供宏的一般概念,但它无法编译。请参阅 Peyman 的答案,它告诉您如何正确编写它。
基本上,它看起来像是一种交换
c
类型的两个变量a
、b
的方法。在您的情况下,输出将是:
此交换算法的工作方式很简单。基本上,您希望将
a
复制到b
中,并将b
复制到a
中。但是,如果您只是将b
复制到a
中,您将丢失a
,并且您将陷入的两个副本b。
您不只是将
b
复制到a
中,而是首先将a
的副本保存到名为的临时变量中>t
,然后将b
复制到a
中,然后复制t
(其中保存a
的原始值) code>) 到b
中。完成后,您就可以忘记t
。Based on the usage and on the fact that
c
is not used in the macro, it looks like there's a typo in the macro. Instead of usingint
, it should sayc
:In fact, while this "fix" will give you the general idea of the macro, it won't compile. Please see Peyman's answer which tells you how to write it correctly.
Basically, it looks like a way to swap two variables
a
,b
of the typec
.In your case the output would be:
The way this swapping algorithm works is simple. Basically, you want to copy
a
intob
andb
intoa
. However, if you just copyb
intoa
, you'll losea
, and you'll be stuck with two copies ofb
.Instead of just copying
b
intoa
, you first save a copy ofa
into a temporary variable calledt
, then copyb
intoa
, then copyt
(which holds the original value ofa
) intob
. When you're done, you can forget aboutt
.