考虑玩具程序(post.cpp):
#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<int > a;
int i;
for(i=0;i<10;i++)
a.push_back(i);
auto it=a.rbegin();
while(it!=a.rend()) {
if ((*it % 2)==0) {
cout << "about to erase "<<*it<<endl;
a.erase((it++).base());
}
else {
++it;
}
}
for(auto it2=a.begin(); it2 != a.end(); it2++) {
cout << *it2 << endl;
}
return 0;
}
我要做的是测试均匀性,然后删除当前数字,因为(it++)
应该返回当前迭代器,然后推进迭代器。这是我得到的输出:
$ ./post
about to erase 8
about to erase 6
about to erase 4
about to erase 2
about to erase 0
0
2
4
6
8
但是,如果我将行更改a.erase((it++).base());
为a.erase((++it).base());
,我会得到正确的行为。为什么是这样?
有用的说明:我使用的是base()
因为 reverse_iterators 不能用于erase()
. 有一个应用程序,我想在向量上反向擦除东西。