如何通过函数将成员函数指针传递给std::function
。我将通过比较(Live Test)来解释它:
template<class R, class... FArgs, class... Args>
void easy_bind(std::function<R(FArgs...)> f, Args&&... args){
}
int main() {
fx::easy_bind(&Class::test_function, new Class);
return 0;
}
我收到错误消息:
no matching function for call to ‘easy_bind(void (Class::*)(int, float, std::string), Class*)’
我只是不明白为什么函数指针在通过函数参数传递时不能传递给std::function
。我该如何通过该功能?我愿意将easy_bind
函数参数从std::function
更改为函数指针,但我真的不知道如何。
编辑:简化问题。
编辑:感谢@remyabel,我得到了我需要的东西:http://ideone.com/FtkVBg
template <typename R, typename T, typename... FArgs, typename... Args>
auto easy_bind(R (T::*mf)(FArgs...), Args&&... args)
-> decltype(fx::easy_bind(std::function<R(T*,FArgs...)>(mf), args...)) {
return fx::easy_bind(std::function<R(T*,FArgs...)>(mf), args...);
}
答案 0 :(得分:16)
http://en.cppreference.com/w/cpp/utility/functional/mem_fn
struct Mem
{
void MemFn() {}
};
std::function<void(Mem*)> m = std::mem_fn(&Mem::MemFn);
答案 1 :(得分:2)
我认为问题可以缩小到这个:
template<class R, class... FArgs>
void test(std::function<R(FArgs...)> f)
{
}
int main() {
test(&SomeStruct::function);
}
错误消息非常相似,没有其他easy_bind
内容:
main.cpp: In function 'int main()':
main.cpp:63:31: error: no matching function for call to
'test(void (SomeStruct::*)(int, float, std::string))'
test(&SomeStruct::function);
main.cpp:63:31: note: candidate is:
main.cpp:49:10: note: template<class R, class ... FArgs>
void test(std::function<_Res(_ArgTypes ...)>)
void test(std::function<R(FArgs...)> f)
^
main.cpp:49:10: note: template argument deduction/substitution failed:
main.cpp:63:31: note: 'void (SomeStruct::*)(int, float, std::string)
{aka void (SomeStruct::*)(int, float, std::basic_string<char>)}'
is not derived from 'std::function<_Res(_ArgTypes ...)>'
test(&SomeStruct::function);
基本上,它不能为你神奇地创造std::function
。您需要类似Functor
别名的内容。
感谢generic member function pointer as a template parameter中提供的答案,以下是您可以做的事情:
//Test Case:
struct SomeStruct {
public:
int function(int x, float y, std::string str) {
std::cout << x << " " << y << " " << str << std::endl;
return 42;
}
};
template <typename Ret, typename Struct, typename ...Args>
std::function<Ret (Struct*,Args...)> proxycall(Ret (Struct::*mf)(Args...))
{
return std::function<Ret (Struct*,Args...)>(mf);
}
int main() {
auto func3 = fx::easy_bind(proxycall(&SomeStruct::function), new SomeStruct);
int ret = func3(5, 2.5, "Test3");
std::cout << ret << "\n";
return 0;
}
现在它可以自动运行。