共用方式為


tuple_element 類別 <utility>

包裝 pair 項目的型別。

template<class T1, class T2>  
    class tuple_element<0, pair<T1, T2> > {
    typedef T1 type;
    };
template<class T1, class T2>
    class tuple_element<1, pair<T1, T2> > {
    typedef T2 type;
    };

參數

  • T1
    第一組 elemment 類型。

  • T2
    第二個的 elemment 類型。

備註

範本是樣板類別 tuple_element 類別 <tuple>的特製化。 每個都是對應的 pair 陣列元素的同義字的巢狀 typedef type 。

範例

 

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

需求

標題: <公用程式>

命名空間: std

請參閱

參考

get 函式 <utility>

tuple_size 類別 <utility>

其他資源

<utility> 成員