タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

c++とbindに関するMonMonMonのブックマーク (1)

  • std::bindをやっと理解 - joynote break;

    bindが今までイマイチ理解できてなかったけど、書いてみたら一発で理解。 要は、function(関数ポインタ/関数オブジェクト/ラムダ式)の引数を束縛して新しいfunctionオブジェクトを生成してるのね。 #include <functional> #include <iostream> using namespace std; void Func(int a, int b) { cout << a*b << endl; } int main(){ // intの引数1つのfunction function<void (int)> func; // int引数2つのfunctionの片方を定数(3)で束縛して、int引数1つのfunctionに入れる func = bind(Func,placeholders::_1,3); // 動く func(4); return 0; } 出力結

    std::bindをやっと理解 - joynote break;
  • 1