gpt4 book ai didi

c++ - 需要修复我的 Variadic 宏

转载 作者:行者123 更新时间:2023-11-28 02:26:16 25 4
gpt4 key购买 nike

我想使用可变参数宏,但出现错误

#define SERVER_RE_1(ServerFunction, Type1)                          \
{ \
Type1 arg1; \
getData(args, arg1); \
sv. ## ServerFunction ## (ssl, arg1); \
}

#define SERVER_RE_2(ServerFunction, Type1, Type2) \
{ \
Type1 arg1; \
Type2 arg2; \
getData(args, arg1, arg2); \
sv. ## ServerFunction ## (ssl, arg1, arg2); \
}

#define SERVER_RE_3(ServerFunction, Type1, Type2, Type3) \
{ \
Type1 arg1; \
Type2 arg2; \
Type3 arg3; \
getData(args, arg1, arg2, arg3); \
sv. ## ServerFunction ## (ssl, arg1, arg2, arg3); \
}

#define GET_MACRO(_1,_2,_3,_4,NAME,...) NAME
#define SERVER_RE(...) GET_MACRO(__VA_ARGS__, SERVER_RE_3, SERVER_RE_2, SERVER_RE_1)(__VA_ARGS__)

-

SERVER_RE(signIn, std::string, std::string);

错误 C2065:“登录”:未声明的标识符
error C2275: 'std::string' : 非法使用此类型作为表达式

-

但是 SERVER_RE_2 运行良好。

SERVER_RE2(signIn, std::string, std::string);

最佳答案

删除多余的##,如替换行

    sv. ## ServerFunction ## (ssl, arg1, arg2, arg3);           \

    sv. ServerFunction (ssl, arg1, arg2, arg3);           \

编辑

你能试着编译下面的代码吗?

#include <string>
#define SERVER_RE_1(ServerFunction, Type1) \
{ \
Type1 arg1; \
getData(args, arg1); \
sv. ServerFunction (ssl, arg1); \
}

#define SERVER_RE_2(ServerFunction, Type1, Type2) \
{ \
Type1 arg1; \
Type2 arg2; \
getData(args, arg1, arg2); \
sv.ServerFunction(ssl, arg1, arg2); \
}

#define SERVER_RE_3(ServerFunction, Type1, Type2, Type3) \
{ \
Type1 arg1; \
Type2 arg2; \
Type3 arg3; \
getData(args, arg1, arg2, arg3); \
sv.ServerFunction(ssl, arg1, arg2, arg3); \
}

#define GET_MACRO(_1,_2,_3,_4,NAME,...) NAME
#define SERVER_RE(...) GET_MACRO(__VA_ARGS__, SERVER_RE_3, SERVER_RE_2, SERVER_RE_1)(__VA_ARGS__)

struct C{
template<class T1>
void signIn(int,T1){}
template<class T1, class T2>
void signIn(int,T1,T2){}
template<class T1, class T2,class T3>
void signIn(int,T1,T2,T3){}
};

template<class T1>
void getData(int,T1){}
template<class T1, class T2>
void getData(int,T1,T2){}
template<class T1, class T2, class T3>
void getData(int,T1,T2,T3){}

int main(){
C sv;
int args=0,ssl=0;
SERVER_RE(signIn, std::string);
SERVER_RE(signIn, std::string, std::string);
SERVER_RE(signIn, std::string, std::string, std::string);
}

这是编译的完整代码 - 对我来说,在 g++clang++ 中,在 c++11c++98 模式

编辑2

第一个警告 warning C4003 让我觉得此处可变参数宏存在一个基本问题。

确实,启动我的窗口并在 visual studio 中玩耍时,visual studio 中的可变宏扩展存在一个错误。

您可以通过以下代码自行查看:

#include <stdio.h>
#define AAA(a,b) printf("%d %d\n",a,b)
#define BBB(...) AAA(__VA_ARGS__)
int main(){
AAA(1,2); // works
BBB(3,4); // warning + error
}

但别担心!你可以修好它!使用我上面的代码,但替换行

#define SERVER_RE(...) GET_MACRO(__VA_ARGS__, SERVER_RE_3, SERVER_RE_2, SERVER_RE_1)(__VA_ARGS__)

#define GET_MACRO_X(X) GET_MACRO X
#define SERVER_RE(...) GET_MACRO_X((__VA_ARGS__, SERVER_RE_3, SERVER_RE_2, SERVER_RE_1))(__VA_ARGS__)

然后在 visual studio 中编译!耶!

关于c++ - 需要修复我的 Variadic 宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30554724/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com