【C++】pair
STL的pair,有两个值,可以是不同的类型。
template <class T1, class T2> struct pair;
注意,pair在头文件utility中,不要include。(一个错误是 include <pair>)
成员类型
first_type | first的类型 |
second_type | second的类型 |
成员变量
first | 第一个值 |
second | 第二个值 |
成员函数
构造函数 | |
pair:: operator = | |
pair:: swap |