std::tuple_size(std::array)
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
Defined in header <array>
|
||
template< class T, size_t N > class tuple_size< array<T, N> > : |
(1) | (C++11およびそれ以降) |
コンパイル時の定数式としてstd::array内の要素数へのアクセスを提供します.
Original:
Provides access to the number of elements in an std::array as a compile-time constant expression.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
Inherited from std::integral_constant
Member constants
value [静的] |
N , the number of elements in the array (パブリック静的メンバ定数) |
Member functions
operator std::size_t |
std::size_tにオブジェクトは、 value 返しに変換します Original: converts the object to std::size_t, returns value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) |
Member types
タイプ
Original: Type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Definition |
value_type
|
std::size_t
|
type
|
std::integral_constant<std::size_t, value> |
[編集] 例
このコードを実行します
#include <iostream> #include <array> template<class T> void test(T t) { int a[std::tuple_size<T>::value]; // can be used at compile time std::cout << std::tuple_size<T>::value << '\n'; } int main() { std::array<float, 3> arr; test(arr); }
出力:
3
[編集] も参照してください
コンパイル時にtuple のサイズを取得します。 (クラステンプレートの特殊化の2つの値を比較します) |