[root@localhost testc++]# vi fill.cpp

1 #include <iostream>
2 #include <vector>
3 #include <numeric>
4 #include <algorithm>
5 using namespace std;
6
7 int main()
8 {
9 vector<int> vec(10);
10 fill(vec.begin(),vec.end(),9);
11 for(vector<int>::size_type i = 0; i != vec.size();++i)
12 cout << vec[i] << endl;
13 cout << vec.size() << endl;
14 return 0;
15 }
16

[root@localhost testc++]# g++ fill.cpp
[root@localhost testc++]# ./a.out
9
9
9
9
9
9
9
9
9
9
10
[root@localhost testc++]#

如果第十行改成:

fill(vec.begin(), vec.begin() + vec.size()/2,8);

运行结果

[root@localhost testc++]# g++ fill.cpp
[root@localhost testc++]# ./a.out
8
8
8
8
8
0
0
0
0
0
10
[root@localhost testc++]#


Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐