c++的pair用法

c++的pair用法,第1张

在实际的工作中,经常需要用到pair的内容,然后每次呢,我都会由于忘记pair怎么用的而需要去百度,我个人觉得很麻烦,于是想着自己总结一下,这样,以后看自己写的也可以更方便直接一点。
因为主要是写给自己看的,所以,我将主要以代码的形式来展示pair相关的用法:

#include 
using namespace std;
int main(){
    std::pair<std::string,int> pr;
    pr.first = "first";
    pr.second = 1;
    std::pair<std::string,int>pr2("second",2);
    std::pair<std::string,int>pr3 = std::make_pair("third",3);
    std::pair<std::string,std::pair<int,float>>pr4=std::make_pair("four",std::make_pair(1,1.0f));

    printf("%-8s:%d\n",pr.first.c_str(),pr.second);
    printf("%-8s:%d\n",pr2.first.c_str(),pr2.second);
    printf("%-8s:%d\n",pr3.first.c_str(),pr3.second);
    printf("%-8s:%d,%.3f\n",pr4.first.c_str(),pr4.second.first,pr4.second.second);

    return 0;
}

输出结果如下:

first :1
second :2
third :3
four :1,1.000

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1498987.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-25
下一篇 2022-06-25

发表评论

登录后才能评论

评论列表(0条)

保存