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