C++ 参考手册

位置:首页 > C++ 参考手册 >容器库 >std::array > std::array<T,N>::fill

void fill( const T& value );
(C++11 起)
(C++20 前)
constexpr void fill( const T& value );
(C++20 起)

赋给定值 value 给容器中的所有元素。

参数

value - 要赋给元素的值

返回值

(无)

复杂度

与容器大小成线性。