C ++ 0x函数<&gt ;,绑定和成员

时间:2011-05-29 19:38:05

标签: c++11 bind functional-programming member-function-pointers

我尝试按照function模板的Bjarne Stroustups说明进行操作。我特意使用了 c-function-pointers functors lambdas member-function-pointers 的可互换性

鉴于这些定义:

struct IntDiv { // functor
  float operator()(int x, int y) const
    { return ((float)x)/y; }
};

// function pointer
float cfunc(int x, int y) { return (float)x+y; }

struct X { // member function
  float mem(int x, int y) const { return ...; }
};
using namespace placeholders; // _1, _2, ...

我想尽可能分配给function<float(int,int)>

int main() {
  // declare function object
  function<float (int x, int y)> f;
  //== functor ==
  f = IntDiv{};  // OK
  //== lambda ==
  f = [](int x,int y)->float { return ((float)y)/x; }; // OK
  //== funcp ==
  f = &cfunc; // OK

  // derived from bjarnes faq:
  function<float(X*,int,int)> g; // extra argument 'this'
  g = &X::mem; // set to memer function      
  X x{}; // member function calls need a 'this'
  cout << g(&x, 7,8); // x->mem(7,8), OK.

  //== member function ==
  f = bind(g, &x,_2,_3); // ERROR
}

最后一行给出了一个典型的不可读的编译器模板错误。 叹息

我想将f绑定到现有的x实例成员函数,以便只留下签名float(int,int)

该行应该是什么,而不是

f = bind(g, &x,_2,_3);

...或其他错误在哪里?


背景:

以下是Bjarnes使用bindfunction成员函数的示例:

struct X {
    int foo(int);
};
function<int (X*, int)> f;
f = &X::foo;        // pointer to member
X x;
int v = f(&x, 5);   // call X::foo() for x with 5
function<int (int)> ff = std::bind(f,&x,_1)

以为 bind以这种方式使用:未分配的地点获得placeholders,其余地方填入bind。应该_1坚果this,然后`?因此,最后一行是:

function<int (int)> ff = std::bind(f,&x,_2)

在Howards建议下面我试了一下:-) order of args in bind

1 个答案:

答案 0 :(得分:8)

f = bind(g, &x,_1,_2); // OK

占位符引用返回的绑定对象中的参数位置。不要索引g的参数。