fill
进行相同的新值。在指定范围的每个元素。
template<class ForwardIterator, class Type>
void fill(
ForwardIterator _First,
ForwardIterator _Last,
const Type& _Val
);
参数
_First
解决仅向前迭代器的第一个元素的位置将遍历的大小。_Last
解决仅向前的迭代器通过最终元素的位置一将遍历的大小。_Val
将要赋值的值分配给范围[_First,_Last)的元素。
备注
目标范围必须是有效的;所有指针必须dereferenceable,并且,最后位置以访问按增量。 复杂是线性与该范围。
示例
// alg_fill.cpp
// compile with: /EHsc
#include <vector>
#include <algorithm>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1;
vector <int>::iterator Iter1;
int i;
for ( i = 0 ; i <= 9 ; i++ )
{
v1.push_back( 5 * i );
}
cout << "Vector v1 = ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")" << endl;
// Fill the last 5 positions with a value of 2
fill( v1.begin( ) + 5, v1.end( ), 2 );
cout << "Modified v1 = ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")" << endl;
}
要求
标头: <algorithm>
命名空间: std