添加占位符时遇到std::bind
的一些问题
我的代码有点大,所以我只是坚持要领
#define GETFUNC(a) (std::bind(&app::a, this, std::placeholders::_1))
class button{
button(<other parameters here>, std::function<void(int)>) { ... }
..
std::function<void(int)> onhover;
..
};
class app{
app(){
elements.push_back(buttonPtr( new button(<other parameters>, GETFUNC(onHover) );
..
typedef std::unique_ptr<button> buttonPtr;
std::vector<buttonPtr> elements;
..
void onHover(int i) {}
}
那段代码在std::bind
失败了(我从error log得到的那么多)
但是如果我改变的话会有效:
std::function<void(int)>
至std::function<void()>
onHover(int i)
至onHover()
std::bind(&app::a, this, std::placeholders::_1)
至std::bind(&app::a, this)
有关为何会发生这种情况的任何想法以及如何解决?
答案 0 :(得分:1)
工作正常。检查一下并查找代码的差异。
#include <functional>
#include <iostream>
struct app
{
std::function<void (int)>
get_func ()
{
return std::bind (&app::on_hover, this, std::placeholders::_1);
}
void on_hover (int v)
{
std::cout << "it works: " << v << std::endl;
}
};
int
main ()
{
app a;
auto f = a.get_func ();
f (5);
}