pair对组创建
功能描述:
成对出现的数据,利用对组可以返回两个数据
两种创建方式:
代码如下:
#include <iostream>
using namespace std;
#include <cstring>void test01() {//第一种方式pair<string, int>p("Tom", 20);cout << "姓名:" << p.first << "年龄:" << p.second << endl;//第二种方式pair<string, int >p2 = make_pair("Jerry", 30);cout << "姓名:" << p2.first << "年龄:" << p.second << endl;}int main() {test01();return 0;
}