C++ std::pair<,> 是什么怎么用
Posted 软件工程小施同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ std::pair<,> 是什么怎么用相关的知识,希望对你有一定的参考价值。
std::pair主要的作用是将两个数据组合成一个数据,两个数据可以是同一类型或者不同类型。
例如std::pair<int,float> 或者 std::pair<double,double>等。
pair实质上是一个结构体,其主要的两个成员变量是first和second,这两个变量可以直接使用。
#include <iostream>
#include <utility>
#include <string>
using namespace std;
int main ()
{
pair <string,double> product1 ("tomatoes",3.25);
pair <string,double> product2;
pair <string,double> product3;
product2.first = "lightbulbs"; // type of first is string
product2.second = 0.99; // type of second is double
product3 = make_pair ("shoes",20.0);
cout << "The price of " << product1.first << " is $" << product1.second << "\\n";
cout << "The price of " << product2.first << " is $" << product2.second << "\\n";
cout << "The price of " << product3.first << " is $" << product3.second << "\\n";
return 0;
}
原文链接:https://blog.csdn.net/qq_20853741/article/details/112858358
以上是关于C++ std::pair<,> 是什么怎么用的主要内容,如果未能解决你的问题,请参考以下文章