定义于头文件

std::pair是一个结构体模板,其可于一个单元存储两个相异对象。 pair 是 std::tuple 的拥有两个元素的特殊情况。

访问 pair 的一个元素

std::get(std::pair)
template

typename std::tuple_element<I, std::pair >::type&

get( pair& p ) noexcept;

(1)(C++11 起)
(C++14 前)
template

constexpr std::tuple_element_t<I, std::pair >&

get( pair& p ) noexcept;

(1)(C++14 起)
template

const typename std::tuple_element<I, std::pair >::type&

get( const pair& p ) noexcept;

(2)(C++11 起)
(C++14 前)
template

constexpr const std::tuple_element_t<I, std::pair >&

get( const pair& p ) noexcept;

(C++14 起)
template

typename std::tuple_element<I, std::pair >::type&&

get( std::pair&& p ) noexcept;

(3)(C++11 起)
(C++14 前)
template

constexpr std::tuple_element_t<I, std::pair >&&

get( std::pair&& p ) noexcept;

(3)(C++14 起)
template

constexpr const std::tuple_element_t<I, std::pair >&&

get( const std::pair&& p ) noexcept;

(4)(C++17 起)

template
constexpr T& get(std::pair& p) noexcept;

(5)(C++14 起)

template
constexpr const T& get(const std::pair& p) noexcept;

(6)(C++14 起)

template
constexpr T&& get(std::pair&& p) noexcept;

(7)(C++14 起)

template
constexpr const T&& get(const std::pair&& p) noexcept;

(8)(C++17 起)

template
constexpr T& get(std::pair& p) noexcept;

(9)(C++14 起)

template
constexpr const T& get(const std::pair& p) noexcept;

(10)(C++14 起)

template
constexpr T&& get(std::pair&& p) noexcept;

(11)(C++14 起)

template
constexpr const T&& get(const std::pair&& p) noexcept;

(12)(C++17 起)

用类 tuple 的接口从 pair 提取元素。

若序号 I 不是 0 或 1 则基于范围的重载 (1-4) 无法编译。

若类型 TU 相同则基于类型的重载 (5-12) 无法编译。

参数

p要提取内容的 pair

返回值

1-4) 若 I==0 则返回到 p.first 的引用,若 I==1 则返回到 p.second 的引用。

5-8) 返回到 p.first 的引用。

9-12) 返回到 p.second 的引用。

调用示例

#include #include #include #include #include #include struct Cell{int x;int y;Cell() = default;Cell(int a, int b): x(a), y(b) {}bool operator ==(const Cell &cell) const{return x == cell.x && y == cell.y;}bool operator <(const Cell &cell) const{if (x < cell.x){return true;}return y < cell.y;}};std::ostream &operator<<(std::ostream &os, const Cell &cell){os << "{" << cell.x << "," << cell.y << "}";return os;}std::ostream &operator<<(std::ostream &os, const std::pair &pair){os << "pair{" << pair.first << " {" << pair.second.x << "," << pair.second.y << "}}";return os;}int main(){std::pair pair1(101, Cell(102, 103));std::cout << "pair1:" << std::setw(8) << std::get(pair1) << ""<< std::get(pair1) << std::endl;std::pair pair2(101, Cell(102, 103));std::cout << "pair2:" << std::setw(8) << std::get(std::move(pair2)) << ""<< std::get(std::move(pair2)) << std::endl;return 0;}

输出

pair1: 101{102,103}pair2: 101{102,103}