array::fill
清除陣列複製到指定的項目為空陣列。
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