6

在阅读了关于VA_NARG之后

我尝试使用宏根据C中的参数数量来实现函数重载。现在的问题是:

void hello1(char *s) { ... }
void hello2(char *s, char *t) { ... }
// PP_NARG(...)           macro returns number of arguments :ref to link above
 // does not work
#define hello(...)         hello ## PP_NARG(__VA_ARGS__)  

int main(void)
{
   hello("hi");   // call hello1("hi");
   hello("foo","bar"); // call hello2("foo","bar");
   return 0;
}

我从 C-faq中读到了这个。但仍然无法让它工作......

4

3 回答 3

4

这是因为宏的评估规则。您必须定义某种将数字作为令牌接收的辅助宏:

#define HELLO_1(N, ...)         hello ## N
#define HELLO_0(N, ...)         HELLO_1(N, __VARGS__)
#define HELLO(...)         HELLO_0(PP_NARG(__VA_ARGS__), __VARGS__)  

或者。您还可以浏览 P99文档的预发布版本。这将为您提供更舒适的宏工具来直接执行此操作。

于 2010-09-22T13:24:31.833 回答
4

PP_NARG是一个相当令人印象深刻的疯狂!

按照glueC99 标准(6.10.3.5,示例 4)中的示例,以下会产生所需的结果:

#define glue(a, b)   a ## b
#define xglue(a, b)  glue(a, b)

#define hello(...)   xglue(hello, PP_NARG(__VA_ARGS__))(__VA_ARGS__)
于 2010-09-22T13:33:01.160 回答
0

我没有可供检查的 C99 编译器,但这应该可以:

#define helloN(N, ...) hello ## N (__VA_ARGS__)
#define hello(...) helloN(PP_NARG(__VA_ARGS__), __VA_ARGS__)
于 2010-09-22T13:22:45.270 回答