fork download
  1. #include <vector>
  2. #include <utility>
  3. #include <iostream>
  4. #include <functional>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10. vector<pair<string, int>> v;
  11. v.push_back(make_pair("abc", 10));
  12. auto f = bind(&pair<string, int>::second, v.begin());
  13. int res = f();
  14. cout << res << endl;
  15. return 0;
  16. }
Success #stdin #stdout 0s 3020KB
stdin
Standard input is empty
stdout
10