std::tuple_size(std::array)
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <array> 中定义
|
||
template< class T, size_t N > class tuple_size< array<T, N> > : |
(1) | (C++11 起) |
提供访问std::array作为一个编译时的常量表达式中的元素个数.
原文:
Provides access to the number of elements in an std::array as a compile-time constant expression.
目录 |
Inherited from std::integral_constant
Member constants
value [静态的]</div></div>
|
N , the number of elements in the array (公共静态成员常量) |
Member functions
operator std::size_t |
(公共成员函数) |
Member types
类型
|
Definition |
value_type
|
std::size_t
|
type
|
std::integral_constant<std::size_t, value> |
</div>
[编辑] 示例
#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 的大小 (类模板特化) |