array::fill
清除并复制数组指定为 null 的元素的数组。
void fill(
const Type& _Val
);
参数
参数 |
说明 |
_Val |
插入数组元素的值。 |
备注
fill 为替换指定数组的每个元素。
示例
// array_fill.cpp
// compile with: /EHsc
#include <array>
#include <iostream>
int main( )
{
using namespace std;
array<int, 2> v1 = {1, 2};
array<int, 2>::iterator iter;
cout << "v1 = " ;
for (iter = v1.begin(); iter != v1.end(); iter++)
cout << *iter << " ";
cout << endl;
v1.fill(3);
cout << "v1 = " ;
for (iter = v1.begin(); iter != v1.end(); iter++)
cout << *iter << " ";
cout << endl;
}
Output
v1 = 1 2
v1 = 3 3
要求
数组页眉: <>
命名空间: std