Przestrzenie nazw
Warianty
Działania

std::tuple_element<std::array>

Z cppreference.com
< cpp‎ | container‎ | array
Zdefiniowane w nagłówku <array>
template< std::size_t I, class T, std::size_t N >
struct tuple_element<I, array<T, N> >;
(od C++11)

Zapewnia indeksowany dostęp do typu elementów tablicy, możliwy do wykorzystania w czasie kompilacji. Jest to przydatna konstrukcja dla tablic używanych za pomocą krotkowego(ang) interfejsu.

Spis treści

[edytuj] Typy składowe

Typ składowy Definicja
type typ elementów przechowywanych w tablicy

[edytuj] Możliwa implementacja

template<std::size_t I, class T>
  struct tuple_element;
 
template<std::size_t I, class T, std::size_t N>
  struct tuple_element<I, std::array<T,N> >
  {
     using type = T;
  };

[edytuj] Przykład

#include <array>
#include <iostream>
#include <tuple>
#include <type_traits>
 
int main()
{
   // define compile time constant array and get the type of the element at position 0
   std::array<int, 10> data {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
   using T = std::tuple_element<0, decltype(data)>::type; // int
 
   std::cout << std::boolalpha;
   std::cout << std::is_same<T, int>::value << '\n';
 
   const auto const_data = data;
   using CT = std::tuple_element<0, decltype(const_data)>::type; // const int
 
   // the result of tuple_element depends on the cv-qualification of the tuple-like type
   std::cout << std::is_same<T, CT>::value << '\n';
   std::cout << std::is_same<CT, const int>::value << '\n';
}

Wynik:

true
false
true

[edytuj] Zobacz także

uzyskuje typ określonego elementu krotki
(specjalizacja szablonu klasy) [edit]
uzyskuje typ elementu pary pair
(specjalizacja szablonu klasy) [edit]