我正在尝试创建一个 HTTP 类,并且我想通过 lambda 使用 C++11(还不是 C++14)回调。我有 2 个模型可用,第一个可以工作……但看起来很难看。我瞄准的第二个不是编译(最后出错)。
我不能使用std::function
,因为这是一个嵌入式项目,并且该模板会生成大量代码。
#include <cstring>
class HTTP
{
public:
void get1(const char* url, void* context, void (*callback)(void*, const char*) )
{
callback(context, "");
}
void get2(const char* url, void (*callback)(const char*) )
{
callback("");
}
};
void test()
{
int k;
HTTP http;
http.get1( "http://google.com", &k, [](void* context, const char* s){
int *k = (int*) context;
*k = strlen(s);
});
// this does not compile, looking for other alternatives
http.get2( "http://google.com", [&k](const char* s){
k = strlen(s);
});
}
来自 gcc 的错误(xtensa-esp32-elf-g++(crosstool-NG crosstool-ng-1.22.0-80-g6c4433a)5.2.0)
HttpRequests.cpp: In function 'void test()':
HttpRequests.cpp:29:6: error: no matching function for call to 'HTTP::get2(const char [18], test()::<lambda(const char*)>)'
});
^
HttpRequests.cpp:11:10: note: candidate: void HTTP::get2(const char*, void (*)(const char*))
void get2(const char* url, void (*callback)(const char*) )
^
HttpRequests.cpp:11:10: note: no known conversion for argument 2 from 'test()::<lambda(const char*)>' to 'void (*)(const char*)'