What is std::pair?(什么是 std::pair?)
问题描述
std::pair
有什么用,我为什么要使用它,boost::compressed_pair
有什么好处?
std::pair
是一种将两个值组合为一个对象的数据类型.std::map
将其用作密钥,值对.
在您学习时pair
,您可以查看 tuple
.它就像 pair
,但用于对任意数量的值进行分组.tuple
是 TR1 的一部分,许多编译器已经将它包含在他们的标准库实现中.
此外,请参阅 Pete Becker 所著《C++ 标准库扩展:教程和参考》一书的第 1 章元组",ISBN-13:9780321412997,以获得详尽的解释.>
What is std::pair
for, why would I use it, and what benefits does boost::compressed_pair
bring?
std::pair
is a data type for grouping two values together as a single object. std::map
uses it for key, value pairs.
While you're learning pair
, you might check out tuple
. It's like pair
but for grouping an arbitrary number of values. tuple
is part of TR1 and many compilers already include it with their Standard Library implementations.
Also, checkout Chapter 1, "Tuples," of the book The C++ Standard Library Extensions: A Tutorial and Reference by Pete Becker, ISBN-13: 9780321412997, for a thorough explanation.
这篇关于什么是 std::pair?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:什么是 std::pair?
基础教程推荐
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01