tuple_size クラス <array>
配列のサイズをラップします。
template<class Ty, std::size_t N>
class tuple_size<array<Ty, N> > {
static const unsigned value = N;
};
テンプレート名
Ty
要素の型。N
配列のサイズ。
解説
これは、テンプレート クラス tuple_size クラス <tuple> から特化したテンプレートです。 配列のサイズ N を値として持つ整数定数式のメンバー value を持ちます。
使用例
// 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);
}
必要条件
ヘッダー: の <配列>
名前空間: std