-1

添加占位符时遇到了一些问题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(我从错误日志中得到了这么多),但如果我改变它就可以工作:

  • 全部std::function<void(int)>std::function<void()>
  • onHover(int i)onHover()
  • std::bind(&app::a, this, std::placeholders::_1)std::bind(&app::a, this)

关于为什么会发生这种情况以及如何解决它的任何想法?

4

1 回答 1

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);
}
于 2012-11-27T21:59:02.603 回答