C++11:bind的使用
阿新 • • 發佈:2018-12-19
#include <iostream> #include <functional> //std::bind using namespace std; void func(int x, int y) { cout << x << " " << y << endl; } int main() { bind(func, 1, 2)(); //輸出:1 2 bind(func, std::placeholders::_1, 2)(1);//輸出:1 2 using namespace std::placeholders; // adds visibility of _1, _2, _3,... bind(func, 2, _1)(1); //輸出:2 1 bind(func, 2, _2)(1, 2); //輸出:2 2 bind(func, _1, _2)(1, 2); //輸出:1 2 bind(func, _2, _1)(1, 2); //輸出:2 1 //err, 呼叫時沒有第二個引數 //bind(func, 2, _2)(1); system("pause"); return 0; }