다음을 통해 공유


tuple_size 클래스 <utility>

Wraps pair element count.

template<class T1, class T2>  
    class tuple_size<pair<T1, T2> > {
    static const unsigned value = 2;
    };

매개 변수

  • T1
    The type of the first pair elemment.

  • T2
    The type of the second pair elemment.

설명

The template is a specialization of the template class tuple_size 클래스 <tuple>. It has a member value that is an integral constant expression whose value is 2.

예제

 

// std_tr1__utility__tuple_size.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 size " 2" 
    std::cout << " " << std::tuple_size<Mypair>::value; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

요구 사항

Header: <utility>

네임스페이스: std

참고 항목

참조

get 함수 <utility>

tuple_element 클래스 <utility>

기타 리소스

<utility> 멤버