嵌套宏:扩展顺序

时间:2011-12-19 10:26:06

标签: c macros

  

可能重复:
  Why i am not getting the expected output in the following c programme?

我对宏的评估顺序有疑问。对于以下代码,我无法理解输出:

#include <stdio.h>
#define f(a,b) a##b
#define g(a) #a
#define h(a) g(a) 
int main()
{
    printf("%s\n",h(f(1,2)));
    printf("%s\n",g(f(1,2)));
    return 0;
}

输出

12
f(1,2)

为什么f在第二个printf中的g先被扩展?

1 个答案:

答案 0 :(得分:0)

这是宏如何扩展的结果,并且对自引用宏有影响... GNU CPP manual

中详细解释了这一点。