码迷,mamicode.com
首页 > 其他好文 > 详细

STL——pair

时间:2019-02-04 18:16:54      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:一个   bsp   不同的   fir   clu   string   int   make   namespace   

功能:pair将一对值组合成一个值,这一对值可以具有不同的数据类型(T1和T2),两个值可以分别用pair的两个公有函数first和second访问。

#include <bits/stdc++.h>
using namespace std;
int main()
{

    pair< int,double > p1;
    pair< int,pair< int, int> > p2;
    pair< string,int > p3;
    
    p2.first = 1;
    p2.second.first=2;
    p2.second.second=3;
    cout<<p2.first<<" "<<p2.second.first<<" "<<p2.second.second<<endl;
    
    p3 = make_pair("abc",6);
    cout<<p3.first<<" "<<p3.second<<endl;
    
    return 0;
}

 

STL——pair

标签:一个   bsp   不同的   fir   clu   string   int   make   namespace   

原文地址:https://www.cnblogs.com/tonyyy/p/10351941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!