我试图在Microsoft visual studio 2010中使用可变参数宏,并且我在预处理阶段遇到了问题,编译器无法正确翻译表达式。
我在互联网上搜索了这个问题的解决方案,我发现MSV2010中存在一些导致此问题的错误,一些程序员提出了解决此问题的解决方法,实际上they solved it 但我仍面临小问题。
这是您正在使用的代码。
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#define VA_NUM_ARGS(…) VA_NUM_ARGS_IMPL_((__VA_ARGS__, 5,4,3,2,1))
#define VA_NUM_ARGS_IMPL_(tuple) VA_NUM_ARGS_IMPL tuple
#define VA_NUM_ARGS_IMPL(_1,_2,_3,_4,_5,N,…) N
#define macro_dispatcher(func, ...) macro_dispatcher_(func, VA_NUM_ARGS(__VA_ARGS__))
#define macro_dispatcher_(func, nargs) macro_dispatcher__(func, nargs)
#define macro_dispatcher__(func, nargs) func ## nargs
// to verify, run the preprocessor alone (g++ -E):
//VA_NUM_ARGS(x,y,z)
#define max(...) macro_dispatcher(max, __VA_ARGS__)(__VA_ARGS__)
#define max1(a) a
#define max2(a,b) ((a)>(b)?(a):(b))
#define max3(a,b,c) max2(max2(a,b),c)
int main(void)
{
int a,b,c,d,z;
a=10;
b=6;
c=5;
d=VA_NUM_ARGS(a,b,c);
z=max(a,b,c);
printf("Number of Arguments=%d and the max number=%d",d,z);
}
d=VA_NUM_ARGS(a,b,c)
...此处代码将正常运行并提供d = 3的预期数据;
但对于z=max(a,b,c);
....宏将无法正确转换,程序将显示错误
我已经运行了预处理器操作,这就是我作为
的翻译z = max(a,b,c)“在预处理器之前” z = maxVA_NUM_ARGS_IMPL(a,b,c,5,4,3,2,1)(a,b,c); “在预处理器之后”,这不是预期的那样 Z = MAX3(A,B,C);
我怎样才能得到正确的答案? 谢谢你的帮助。