std::bindを理解の続き
#include <functional> #include <iostream> using namespace std; struct Test{ void Func(int a, int b) { cout << a*b << endl; } }; int main(){ function<void (int)> func; Test t; func = bind(&Test::Func,&t,placeholders::_1,3); func(3); return 0; }
func = bind(&Test::Func,&t,placeholders::_1,3)の、&tで一回詰まった。