1
將一個類的成員函數傳遞給另一個類的std::function
的正確方法是什麼?將對象的函數傳遞給另一個類的另一個std ::函數
例如,下面的Bar
想存儲一個Foo
對象的函數。
class Foo {
public:
Foo(int x) : data(x) {}
bool isEven(int y) { return (data + y) & 0x01; }
int data;
};
class Bar {
public:
std::function<bool(int)> testFunction;
};
int main() {
Foo foo1(1);
Bar bar;
bar.testFunction = std::bind(&Foo::isEven, &foo1);
if (bar.testFunction(3)) {
std::cout << "is even" << std::endl;
}
return 0;
}
這並不編譯:
no match for 'operator=' (operand types are 'std::function<bool(int)>' and 'std::_Bind_helper<false, bool (Foo::*)(int), Foo*>::type {aka std::_Bind<std::_Mem_fn<bool (Foo::*)(int)>(Foo*)>}')**