pair使用
#include <iostream>
using namespace std;
int main()
{
pair<string, int> p1("furong", 10);
cout << "姓名 " << p1.first << endl;
cout << "年龄 " << p1.second << endl;
cout << "-----------" << endl;
pair<string, int> p2 = make_pair("quange", 20);
cout << "姓名 " << p2.first << endl;
cout << "年龄 " << p2.second << endl;
return 0;
}
$ ./a.out
姓名 furong
年龄 10
-----------
姓名 quange
年龄 20