我无法解除这种行为:
for (vector<File>::const_iterator it = this->files.begin(); it != this->files.end(); ++it) {
if (...) erase(it); // break after, no need of ++it in else branch
}
其中File是我自己的类(不包括std),而this-&gt;文件是Files的向量
当我编译我得到的代码时(参见第2行)
Path.cpp: In member function ‘void Path::rmFile(File&)’:
Path.cpp:190:24: error: no matching function for call to ‘std::vector<File>::erase(std::vector<File>::const_iterator&)’
Path.cpp:190:24: note: candidates are:
In file included from /usr/include/c++/4.7/vector:70:0,
from Path.h:5,
from Path.cpp:1:
/usr/include/c++/4.7/bits/vector.tcc:135:5: note: std::vector<_Tp, _Alloc>::iterator std::vector<_Tp, _Alloc>::erase(std::vector<_Tp, _Alloc>::iterator) [with _Tp = File; _Alloc = std::allocator<File>; std::vector<_Tp, _Alloc>::iterator = __gnu_cxx::__normal_iterator<File*, std::vector<File> >; typename std::_Vector_base<_Tp, _Alloc>::pointer = File*]
/usr/include/c++/4.7/bits/vector.tcc:135:5: note: no known conversion for argument 1 from ‘std::vector<File>::const_iterator {aka __gnu_cxx::__normal_iterator<const File*, std::vector<File> >}’ to ‘std::vector<File>::iterator {aka __gnu_cxx::__normal_iterator<File*, std::vector<File> >}’
/usr/include/c++/4.7/bits/vector.tcc:147:5: note: std::vector<_Tp, _Alloc>::iterator std::vector<_Tp, _Alloc>::erase(std::vector<_Tp, _Alloc>::iterator, std::vector<_Tp, _Alloc>::iterator) [with _Tp = File; _Alloc = std::allocator<File>; std::vector<_Tp, _Alloc>::iterator = __gnu_cxx::__normal_iterator<File*, std::vector<File> >; typename std::_Vector_base<_Tp, _Alloc>::pointer = File*]
/usr/include/c++/4.7/bits/vector.tcc:147:5: note: candidate expects 2 arguments, 1 provided
make: *** [Path.o] Error 1
即使doc说它没关系,但错误没有匹配函数来调用std :: vector :: erase(std :: vector :: const_iterator&amp;)真的很奇怪。
我真的需要能够通过迭代器删除矢量项。有人能帮帮我吗? 提前做出来。
答案 0 :(得分:4)
你这里有三个错误。
for (vector<File>::const_iterator it = this->files.begin(); it != this->files.end(); ++it) {
if (...) erase(it); // break after, no need of ++it in else branch
}
第一个错误是您错误地将代码剪切并粘贴到StackOverflow中。您要粘贴的是
for (vector<File>::const_iterator it = this->files.begin(); it != this->files.end(); ++it) {
if (...) this->files.erase(it); // break after, no need of ++it in else branch
}
第二个错误是编译器警告你的内容:无法通过const_iterator
修改集合。 (编辑:Okay, apparently C++11 added such a way, but libstdc++ didn't support it immediately.)这就是const_
部分的含义!如果要修改集合,请使用普通的iterator
:
for (vector<File>::iterator it = this->files.begin(); it != this->files.end(); ++it) {
if (...) this->files.erase(it); // LOOK OUT, THERE'S STILL A BUG
}
第三个错误是,一旦你在一个集合上调用std::vector::erase
,那个集合中的所有迭代器(和const_iterator
)就会变成不可用 。标准术语是erase
使迭代器无效。 (原因是std::vector
的行为基本上类似于大堆分配的缓冲区,并且允许向量上调用resize
执行相当于realloc
(1)的操作在缓冲区上,并且允许调用erase
来调用resize
(因为如果你erase
向量中的一半元素,你可能期望堆分配到因此缩小)。)
那么,你正在尝试做什么将无法使用使用那种天真的for-loop方法。您需要做的是使用标准算法,namely remove_if
:
#include <algorithm>
auto predicate = [](const File& f) { return f.ShouldBeErasedOrWhatever(); }
auto newEndIterator = std::remove_if(this->files.begin(), this->files.end(), predicate);
this->files.erase(newEndIterator, this->files.end()); // erase everything after "newEndIterator"
将f.ShouldBeErasedOrWhatever()
替换为原始代码中的“...
”。现在你有了有效的,惯用的C ++ 11做正确的事情 - 没有错误!
(1) - 注意“相当于realloc
”:当然,它不是真的 realloc
;它确实是一个类型安全的进程,可以根据需要调用move-constructors和析构函数。 vector
知道在C ++中memcpy
任意对象通常不安全。
答案 1 :(得分:2)
假设您的示例代码不正确并且它确实是files.erase(it)
,那么{C} 11中只添加了const_iterator
版本,因为您没有使用{ {1}}。