array::fill

清除数组并复制指定的元素为空数组。

void fill(
   const Type& _Val
);

参数

Parameter

说明

_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

要求

标头: <array>

命名空间: std

请参见

参考

<array>

array Class (TR1)

标准模板库