tuple_size Class <array>
배열의 크기를 래핑합니다.
template<class Ty, std::size_t N>
class tuple_size<array<Ty, N> > {
static const unsigned value = N;
};
템플릿 매개 변수
Ty
요소의 형식입니다.N
배열의 크기입니다.
설명
이 템플릿은 템플릿 클래스의 특수화 된 tuple_size Class <tuple>.멤버가 있습니다 value 값이 되는 정수 계열 상수 식 N, 배열의 크기입니다.
예제
// std_tr1__array__tuple_size.cpp
// compile with: /EHsc
#include <array>
#include <iostream>
typedef std::array<int, 4> Myarray;
int main()
{
Myarray c0 = {0, 1, 2, 3};
// display contents " 0 1 2 3"
for (Myarray::const_iterator it = c0.begin();
it != c0.end(); ++it)
std::cout << " " << *it;
std::cout << std::endl;
// display size " 4"
std::cout << " " << std::tuple_size<Myarray>::value;
std::cout << std::endl;
return (0);
}
요구 사항
헤더: <array>
네임 스페이스: 국방 표준