STL之pair

本文介绍了C++ Standard Template Library(STL)中的pair组件,如何声明并使用pair来存储不同类型的值,例如一个int和一个string。示例展示了如何定义一个pair变量a,其包含一个int类型和一个string类型的数据。
摘要由CSDN通过智能技术生成
(以下部分手打,有误之处敬请在评论区指正;代码部分摘自cplusplus.com)
pair是C++的STL众多模板中的一种,也是比较简单的一种。可以理解为一个结构体,其中包含两个元素。
注意: 只有两个元素!这是它的特点。
两个元素的数据类型可以相同,也可以不同。那么,仔细一想,pair类型在某些时候还是非常实用的。
两个数据,可以是x和y,可以是left和right,可以是下标和数据……总而言之,很多地方都可以应用到。
【pair的定义】

pair < int , string > a;

//定义一个标识符为a的pair,第一个值的类型为int,第二个值的类型为string

【pair的初始化】
我们可以在定义的时候直接对其进行初始化赋值。

std::pair <std::string,double> product2 ("tomatoes",2.30);//直接赋值

std::pair <std::string,double> product3 (product2);//将其他pair的值复制过来

【pair的调用】
我们知道pair里面有两个值,所以正如struct一样,这两个值作为pair的”成员“有各自的名字,first和second,而他们也只有这两个名字,这是固定的。

std::cout << "The price of " << product2.first << " is $" << product2.second << '\n';

【pair的赋值】
我们可以分别给first或second赋值,格式和普通的struct赋值类似,不过C++还为我们提供了可以直接整体赋值的make_pair,相当于平时所说的构造函数。

product1 = std::make_pair(std::string("lightbulbs"),0.99);

【使用typedef进行简化】
由于pair类型的使用比较繁琐,因为如果要定义多个形同的pair类型的时候,可以时候typedef简化声明:

typedef pair<string, string> author;
author pro("May", "Lily");
author joye("James", "Joyce");

关于pair类型的内容大概就是这些,最后放一个使用样例:

// pair::pair example
#include <utility> // std::pair, std::make_pair
#include <string> // std::string
#include <iostream> // std::cout

int main () {
std::pair <std::string,double> product1; // default constructor
std::pair <std::string,double> product2 ("tomatoes",2.30); // value init
std::pair <std::string,double> product3 (product2); // copy constructor

product1 = std::make_pair(std::string("lightbulbs"),0.99); // using make_pair (move)

product2.first = "shoes"; // the type of first is string
product2.second = 39.90; // the type of second is double

std::cout << "The price of " << product1.first << " is $" << product1.second << '\n';
std::cout << "The price of " << product2.first << " is $" << product2.second << '\n';
std::cout << "The price of " << product3.first << " is $" << product3.second << '\n';
return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值