std::array
的推导指引
来自cppreference.com
在标头 <array> 定义
|
||
template< class T, class... U > array( T, U... ) |
(C++17 起) | |
为 std::array 提供了一个推导指引,以提供 用于从变长形参包构造 std::array 的 std::experimental::make_array 等价物。
若 (std::is_same_v<T, U> && ...) 非 true 则程序非良构。注意它在 sizeof...(U) 为零时为 true。
示例
运行此代码
#include <array> #include <cassert> int main() { int const x = 10; std::array a{1, 2, 3, 5, x}; // OK 创建 std::array<int, 5> assert(a.back() == x); // std::array b{1, 2u}; // 错误,所有实参必须拥有相同类型 std::array c(std::to_array<short>({3, 2, 1})); // C++20 替代写法, // 创建 std::array<short, 3> }