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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。