对组pair的创建

#include<iostream>
using namespace std;
#include<string>

//对组的创建,每一个对组中都有两个数据
//pair
int main(void)
{
    //第一种方式
    pair<string, int>p("TOm", 5);
    cout << "第一个数据是:" << p.first << "第二个数据是" << p.second << endl;

    //第二种方式
    pair<string, int>p2 = make_pair("Jerry", 30);
    cout << "第一个数据是:" << p2.first << "第二个数据是" << p2.second << endl;

    return 0;
}

 

上一篇:Python专栏 | 大题精讲:求单引号


下一篇:C++中 unordered_map 与 map 的区别