cplusplus
.com
教程
参考
文章
论坛
C++
教程
参考
文章
论坛
参考
C 库
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
C++11
<cfenv> (fenv.h)
<cfloat> (float.h)
C++11
<cinttypes> (inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
C++11
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
C++11
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
C++11
<ctgmath> (tgmath.h)
<ctime> (time.h)
C++11
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
C++11
<array>
<deque>
C++11
<forward_list>
<list>
<map>
<queue>
<set>
<stack>
C++11
<unordered_map>
C++11
<unordered_set>
<vector>
输入/输出
<fstream>
<iomanip>
<ios>
<iosfwd>
<iostream>
<istream>
<ostream>
<sstream>
<streambuf>
多线程
C++11
<atomic>
C++11
<condition_variable>
C++11
<future>
C++11
<mutex>
C++11
<thread>
其他
<algorithm>
<bitset>
C++11
<chrono>
C++11
<codecvt>
<complex>
<exception>
<functional>
C++11
<initializer_list>
<iterator>
<limits>
<locale>
<memory>
<new>
<numeric>
C++11
<random>
C++11
<ratio>
C++11
<regex>
<stdexcept>
<string>
C++11
<system_error>
C++11
<tuple>
C++11
<type_traits>
C++11
<typeindex>
<typeinfo>
<utility>
<valarray>
<utility>
类
pair
函数
C++11
declval
C++11
forward
make_pair
C++11
move
C++11
move_if_noexcept
C++11
swap
类型
C++11
piecewise_construct_t
常量
C++11
piecewise_construct
命名空间
rel_ops
pair
pair::pair
成员函数
pair::operator=
C++11
pair::swap
非成员重载
C++11
get (pair)
relational operators (pair)
C++11
swap (pair)
非成员特化
C++11
tuple_element<pair>
C++11
tuple_size<pair>
参考
<utility>
pair
类模板
<utility>
std::
pair
template <class T1, class T2> struct pair;
值对
此类将一对值组合在一起,它们可以具有不同的类型(
T1
和
T2
)。可以通过其公共成员
first
和
second
访问单个值。
tuple
的特例是 pair。
模板参数
T1
成员
first
的类型,别名为
first_type
。
T2
成员
second
的类型,别名为
second_type
。
成员类型
成员类型
定义
说明
first_type
第一个模板参数(
T1
)
成员
first
的类型。
second_type
第二个模板参数(
T2
)
成员
second
的类型。
成员变量
成员变量
定义
first
pair
中的第一个值
second
pair
中的第二个值
成员函数
(构造函数)
构造 pair
(public member function)
pair::operator=
赋值内容
(公开成员函数)
pair::swap
交换内容
(公开成员函数)
非成员函数重载
relational operators (pair)
pair 的关系运算符
(函数模板)
swap (pair)
交换两个 pair 的内容
(函数模板)
get (pair)
获取元素(tuple 接口)
(函数模板)
非成员类特化
tuple_element<pair>
pair 的 tuple 元素类型
(类模板特化)
tuple_size<pair>
pair 的 tuple 特征
(类模板特化)
另见
make_pair
构造 pair 对象
(function template)
piecewise_construct
piecewise construct 常量
(常量)