C++ STL中的fill()函数用于在容器中填充一些默认值。 fill()函数也可以用于填充容器中某个范围内的值。它接受两个开始和结束的迭代器,并在容器中填充一个值,该值从begin所指向的位置开始,并在end所指向的位置之前。
用法:
void fill(iterator begin, iterator end, type value);
参数:
- begin:该函数将从迭代器begin指向的位置开始填充值。
- end:该函数将值填充到迭代器末端指向的位置之前的位置。
- value:此参数表示容器中的函数要填充的值。
注意:请注意,范围中包括“开始”,但不包括“结束”。
返回值:此函数不返回任何值。
以下示例程序旨在说明C++ STL中的fill()函数:
// C++ program to demonstrate working of fill()
#include <bits/stdc++.h>
using namespace std;
int main()
{
vector<int> vect(8);
// calling fill to initialize values in the
// range to 4
fill(vect.begin() + 2, vect.end() - 1, 4);
for (int i = 0; i < vect.size(); i++)
cout << vect[i] << " ";
// Filling the complete vector with value 10
fill(vect.begin(), vect.end(), 10);
cout << endl;
for (int i = 0; i < vect.size(); i++)
cout << vect[i] << " ";
return 0;
}
输出:
0 0 4 4 4 4 4 0 10 10 10 10 10 10 10 10
参考:http://www.cplusplus.com/reference/algorithm/fill/
相关用法
- C++ fill用法及代码示例
- C/C++ fill()、fill_n()用法及代码示例
- C++ ios bad()用法及代码示例
- C++ ios eof()用法及代码示例
- C++ wcsspn()用法及代码示例
- C++ fill_n()用法及代码示例
- C++ btowc()用法及代码示例
- C++ norm()用法及代码示例
- C++ conj()用法及代码示例
- C++ ios clear()用法及代码示例
- C++ ios fail()用法及代码示例
- C++ ios rdstate()用法及代码示例
- C++ wcslen()用法及代码示例
注:本文由纯净天空筛选整理自harsh.agarwal0大神的英文原创作品 fill() function in C++ STL with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。