C中的宏....请给出解决方案
假设我声明了一个宏名称任何东西,xyz()
。
现在我正在创建另一个宏 xyz1()
并引用第一个宏,即第二个宏中的 xyz()
。
最后,我将创建另一个宏 xyz2()
并在第三个宏中引用第二个宏。
现在我的问题是:这是正确的(它执行时没有任何问题)? 宏xyz()
定义了两次。为什么它没有给出错误?解决办法是什么?
Suppose I declared a macro name anything, xyz()
.
Now I am creating another macro xyz1()
and reference the 1st macro i.e xyz()
in 2nd.
Finally, I'll create another macro xyz2()
and reference the 2nd macro in 3rd.
Now my question is: is this correct (it's executing without any problem)?
Macro xyz()
is defined twice. Why its not giving an error? What is the solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,第一个宏只会定义一次。当您编写时,
预处理器将在任何看到
Symbol
的地方用Symbol
替换SymbolResolution
。如果SymbolResolution
是#define
,或者包含一些内部有#define
的符号,它们也会发生同样的情况 - 它们都会被替换。这种情况会一直发生,直到整个翻译单元中没有带有#define
的符号为止。因此,您可以根据需要从其他宏中引用宏。但是,您不能递归地引用宏。您还应该小心这一点 - 如果您滥用宏,这很容易导致大量难以阅读且很难调试的代码。
No, the first macro wiil only be defined once. When you write
the preprocessor will substitute
Symbol
forSymbolResolution
wherever it seesSymbol
. IfSymbolResolution
is a#define
, or includes some symbols that have#define
s inside the same will happen to them - they will all be replaced. This will happen until there're no symbols that have#define
s for them in the whole translation unit.So you can reference macros from other macros as you wish. You can't however reference macros recursively. You also should be careful with this - this can easily lead to lots of barely readable and very hard to debug code if you misuse macros.
如果你的意思是宏引用其他宏,这是合法的。
然而,宏调用自身是不合法的
If you mean macros referencing other macros, It is legal.
However a macro calling itself is not legal