C++ STL中的fill_n()函数用于在容器中填充一些默认值。 fill_n()函数用于将值填充到从起始位置开始的前n个位置。它接受一个迭代器begin和第n个位置作为参数,并以给定值填充从begin所指向的位置开始的第n个位置。
用法:
void fill_n(iterator begin, int n, type value);
参数:
- begin:该函数将从迭代器begin指向的位置开始填充值。
- n:此参数表示从第一个参数begin指向的位置开始要填充的位置数。
- value:此参数表示容器中的函数要填充的值。
返回值:此函数不返回任何值。
以下示例程序旨在说明C++ STL中的fill_n()函数:
// C++ program to demonstrate working of fil_n()
#include <bits/stdc++.h>
using namespace std;
int main()
{
vector<int> vect(8);
// calling fill to initialize first four values
// to 7
fill_n(vect.begin(), 4, 7);
for (int i = 0; i < vect.size(); i++)
cout << ' ' << vect[i];
cout << '\n';
// calling fill to initialize 3 elements from
// "begin()+3" with value 4
fill_n(vect.begin() + 3, 3, 4);
for (int i = 0; i < vect.size(); i++)
cout << ' ' << vect[i];
cout << '\n';
return 0;
}
输出:
7 7 7 7 0 0 0 0 7 7 7 4 4 4 0 0
参考:http://www.cplusplus.com/reference/algorithm/fill_n/
相关用法
- C++ ios eof()用法及代码示例
- C++ ios bad()用法及代码示例
- C++ ios good()用法及代码示例
- C++ ios setstate()用法及代码示例
- C++ ios fail()用法及代码示例
- C++ ios clear()用法及代码示例
- C++ btowc()用法及代码示例
- C++ wcsspn()用法及代码示例
- C++ conj()用法及代码示例
- C++ wcslen()用法及代码示例
- C++ ios rdstate()用法及代码示例
- C++ ios operator()用法及代码示例
- C++ norm()用法及代码示例
注:本文由纯净天空筛选整理自harsh.agarwal0大神的英文原创作品 fill_n() function in C++ STL with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。