阅读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读过this。但仍然无法让它发挥作用......
答案 0 :(得分: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文档的预发布。这将为您提供更直接的宏工具。
答案 1 :(得分:4)
那PP_NARG
令人印象深刻的疯狂!
遵循C99标准中的glue
示例(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__)
答案 2 :(得分:0)
我没有可供检查的C99编译器,但这应该有效:
#define helloN(N, ...) hello ## N (__VA_ARGS__)
#define hello(...) helloN(PP_NARG(__VA_ARGS__), __VA_ARGS__)