对组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; }
标签:cout,int,创建,对组,pair,include 来源: https://www.cnblogs.com/loliconsk/p/14306180.html