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
posted @ 2022-07-28 23:21  thomas_blog  阅读(19)  评论(0编辑  收藏  举报