我在编译以下成员定义时遇到问题:
template<typename... A>
std::tuple<std::string, std::function<void(A...)> > queryCallback;
错误如标题所述:
/databasedispatcher.h:14: error: data member 'queryCallback' cannot be a member template
我意识到我不能为不是方法/功能的成员使用模板定义。考虑到这一点,在这种情况下如何使用<A...>
?
谢谢。
答案 0 :(得分:2)
进行有根据的猜测,您需要将其定义为模板别名:
template<typename... A>
using queryCallback = std::tuple<std::string, std::function<void(A...)>>;
代码示例:
#include <tuple>
#include <iostream>
#include <string>
#include <functional>
template<typename... A>
using queryCallback = std::tuple<std::string, std::function<void(A...)>>;
int main()
{
auto foo = [](int a, int b) { std::cout << a << " + " << b << " = " << a + b << std::endl; };
queryCallback<int, int> A("foo", foo);
std::cout << std::get<0>(A) << std::endl;
std::get<1>(A)(2, 2);
return 0;
}
<强>输出:强>
FOO
2 + 2 = 4
答案 1 :(得分:0)
template<typename... B>
struct T
{
template<typename... A> using QueryCallbackType = std::tuple<std::string, std::function<void(A...)>>;
QueryCallbackType<B...> query_callback;
};