C++pair对组创建

C++pair对组创建

功能描述:

成对出现的数据,利用对组可以返回两个数据
两种创建方式:

pair<type, type>p(value1, value2);
pair<type, type>p = make_pair(value1, value2);

代码示例:

#include<iostream>
#include<string>
using namespace std;
//pair对组的创建
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
              << " 年龄:" << p2.second << endl;
}
int main()
{
    
    
       test01();
       system("pause");
       return 0;
}

总结:
两种方式都可以创对组,记住一种即可

猜你喜欢

转载自blog.csdn.net/gyqailxj/article/details/114627166
今日推荐