std :: bind不能使用1个参数

时间:2012-11-27 21:32:26

标签: c++ c++11 std

添加占位符时遇到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)

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

1 个答案:

答案 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);
}