【发布时间】:2018-06-29 13:23:15
【问题描述】:
我想包装一些类成员函数并围绕它们做一些准备和清理工作。
我尝试复制一些其他线程池代码,但出现一些我无法解决的错误。如何正确操作?
#include <iostream>
#include <string>
using namespace std;
class A {
public:
void connect() {};
void close() {};
template<typename F, typename ... Args>
auto wrapper(F&& f, Args&& ... args) -> typename std::result_of<F(Args...)>::type {
using return_type = typename std::result_of<F(Args...)>::type;
connect();
return_type ret = f(args...);
close();
return ret;
}
bool c(int a, string b) {}
string c(string b) {return b;}
bool r(int a, string b) {}
};
int main() {
A a;
a.connect();
a.c(1, "abc");
a.close(); // equal to a.wrapper(a.c, 1, "abc"); but compling error, how to write it correctly?
cout << "result of a is: " << a.wrapper(a.c, 1, "abc") ? "successful" : "fail" << endl;
cout << "result of another a is: " << a.wrapper(a.c, "abc") << endl;
cout << "result of r is:" << a.wrapper(a.r, 1, "abc") << endl;
}
我得到这样的错误:
main.cpp: In function ‘int main()’:
main.cpp:25:58: error: no matching function for call to ‘A::wrapper(<unresolved overloaded function type>, int, const char [4])’
cout << "result of a is: " << a.wrapper(a.c, 1, "abc") ? "successful" : "fail" << endl;
^
main.cpp:25:58: note: candidate is:
main.cpp:9:10: note: template<class F, class ... Args> typename std::result_of<_Functor(_ArgTypes ...)>::type A::wrapper(F&&, Args&& ...)
auto wrapper(F&& f, Args&& ... args) -> typename std::result_of<F(Args...)>::type {
^
main.cpp:9:10: note: template argument deduction/substitution failed:
main.cpp:25:58: note: couldn't deduce template parameter ‘F’
cout << "result of a is: " << a.wrapper(a.c, 1, "abc") ? "successful" : "fail" << endl;
^
main.cpp:25:87: error: invalid operands of types ‘const char [5]’ and ‘<unresolved overloaded function type>’ to binary ‘operator<<’
cout << "result of a is: " << a.wrapper(a.c, 1, "abc") ? "successful" : "fail" << endl;
^
main.cpp:26:63: error: no matching function for call to ‘A::wrapper(<unresolved overloaded function type>, const char [4])’
cout << "result of another a is: " << a.wrapper(a.c, "abc") << endl;
^
main.cpp:26:63: note: candidate is:
main.cpp:9:10: note: template<class F, class ... Args> typename std::result_of<_Functor(_ArgTypes ...)>::type A::wrapper(F&&, Args&& ...)
auto wrapper(F&& f, Args&& ... args) -> typename std::result_of<F(Args...)>::type {
^
main.cpp:9:10: note: template argument deduction/substitution failed:
main.cpp:26:63: note: couldn't deduce template parameter ‘F’
cout << "result of another a is: " << a.wrapper(a.c, "abc") << endl;
^
【问题讨论】:
-
密切相关且可能重复:stackoverflow.com/questions/16859519/…
标签: c++ c++11 templates template-meta-programming