#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; }