Defined in header <utility> | ||
---|---|---|
template< std::size_t I, class T1, class T2 > typename std::tuple_element<I, std::pair<T1,T2> >::type& get( std::pair<T1, T2>& p ) noexcept; | (1) | (since C++11) (constexpr since C++14) |
template< std::size_t I, class T1, class T2 > const typename std::tuple_element<I, std::pair<T1,T2> >::type& get( const std::pair<T1,T2>& p ) noexcept; | (2) | (since C++11) (constexpr since C++14) |
template< std::size_t I, class T1, class T2 > typename std::tuple_element<I, std::pair<T1,T2> >::type&& get( std::pair<T1,T2>&& p ) noexcept; | (3) | (since C++11) (constexpr since C++14) |
template< std::size_t I, class T1, class T2 > const typename std::tuple_element<I, std::pair<T1,T2> >::type&& get( const std::pair<T1,T2>&& p ) noexcept; | (4) | (since C++11) (constexpr since C++14) |
template <class T, class U> constexpr T& get(std::pair<T, U>& p) noexcept; | (5) | (since C++14) |
template <class T, class U> constexpr const T& get(const std::pair<T, U>& p) noexcept; | (6) | (since C++14) |
template <class T, class U> constexpr T&& get(std::pair<T, U>&& p) noexcept; | (7) | (since C++14) |
template <class T, class U> constexpr const T&& get(const std::pair<T, U>&& p) noexcept; | (8) | (since C++14) |
template <class T, class U> constexpr T& get(std::pair<U, T>& p) noexcept; | (9) | (since C++14) |
template <class T, class U> constexpr const T& get(const std::pair<U, T>& p) noexcept; | (10) | (since C++14) |
template <class T, class U> constexpr T&& get(std::pair<U, T>&& p) noexcept; | (11) | (since C++14) |
template <class T, class U> constexpr const T&& get(const std::pair<U, T>&& p) noexcept; | (12) | (since C++14) |
Extracts an element from the pair using tuple-like interface.
I
is neither 0
nor 1
.T
and U
are the same.p | - | pair whose contents to extract |
p.first
if I == 0
and a reference to p.second
if I == 1
.p.first
.p.second
.#include <iostream> #include <utility> int main() { auto p = std::make_pair(1, 3.14); std::cout << '(' << std::get<0>(p) << ", " << std::get<1>(p) << ")\n"; std::cout << '(' << std::get<int>(p) << ", " << std::get<double>(p) << ")\n"; }
Output:
(1, 3.14) (1, 3.14)
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 2485 | C++11 (by index) C++14 (by type) | there are no overloads for const pair&& | the overloads are added |
Structured binding (C++17) | binds the specified names to sub-objects or tuple elements of the initializer |
(C++11) | tuple accesses specified element (function template) |
(C++11) | accesses an element of an array (function template) |
(C++17) | reads the value of the variant given the index or the type (if the type is unique), throws on error (function template) |
(C++20) | obtains iterator or sentinel from a std::ranges::subrange (function template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/utility/pair/get