命名空间
变体
操作

std::array 的推导指南

来自 cppreference.com
< cpp‎ | container‎ | array
 
 
 
 
定义在头文件 <array>
template< class T, class... U >

array( T, U... )

  -> array<T, 1 + sizeof...(U)>;
(自 C++17 起)

std::array 提供一个 推导指南,以提供等效于 std::experimental::make_array 的功能,用于从可变参数包构造 std::array。

如果 (std::is_same_v<T, U> && ...) 不为真,则程序格式错误。请注意,当 sizeof...(U) 为零时,(std::is_same_v<T, U> && ...) 为真。

[编辑] 示例

#include <array>
#include <cassert>
 
int main()
{
    int const x = 10;
    std::array a{1, 2, 3, 5, x}; // OK, creates std::array<int, 5>
    assert(a.back() == x);
 
//  std::array b{1, 2u}; // Error, all arguments must have the same type
 
//  std::array<short> c{3, 2, 1}; // Error, wrong number of template args
    std::array c(std::to_array<short>({3, 2, 1})); // C++20 alternative,
                                                   // creates std::array<short, 3>
}