关于iostream的迭代器的问题

C++语言 码拜 9年前 (2016-04-17) 697次浏览
求帮助,为什么第一位一输不进vector容器中呢

#include<vector>
#include<functional>
#include<iterator>
using namespace std;
using std::string;
using std::vector;
using namespace placeholders;
int main()
{
	int x;
	cin >> x;
	istream_iterator<int>in(cin),end;
	vector<int>vec(in, end);
	cout << vec.size() << endl;
	for (auto ele : vec)
		cout << ele << "   ";
}

输入
1
2
3
4
5
ctrl^z
输出的是
2  3  4  5

解决方案

40

第一个int输入给了x, 后面的int输入才给了vec, 所以vec.size()比全部int输入个数少1

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明关于iostream的迭代器的问题
喜欢 (0)
[1034331897@qq.com]
分享 (0)