Поделиться через


Класс tuple_element <tuple>

Создать тип элемента tuple.

template<int Idx, class Tuple>
class tuple_element {
    typedef Ti type;
    };

Параметры

  • Idx
    Индекс обозначенного элемента.

  • Tuple
    Тип кортежа.

Заметки

Класс шаблона имеет вложенные typedef type, является синонимом типа в индексе Idx типа Tuple кортежа.

Пример

 

// std_tr1__tuple__tuple_element.cpp 
// compile with: /EHsc 
#include <tuple> 
#include <iostream> 
#include <utility> 
 
typedef std::tuple<int, double, int, double> Mytuple; 
int main() 
    { 
    Mytuple c0(0, 1, 2, 3); 
 
// display contents " 0 1 2 3" 
    std::cout << " " << std::get<0>(c0); 
    std::cout << " " << std::get<1>(c0); 
    std::cout << " " << std::get<2>(c0); 
    std::cout << " " << std::get<3>(c0); 
    std::cout << std::endl; 
 
// display first element " 0" 
    std::tuple_element<0, Mytuple>::type val = std::get<0>(c0); 
    std::cout << " " << val; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

Требования

Заголовок:<tuple>

Пространство имен: std

См. также

Ссылки

<tuple>

Класс tuple

Класс tuple_size <tuple>