c++
The most popular post on C++ Iterator invalidation rules claims that it's not clear if the past-the-end iterators (ie, those returned by end()
, cend()
, rend()
, and crend()
) are invalidated according to the same rules as normal iterators, which point to elements in the container. These claims, made for both 2003 and 2011 C++, defer to a post discussing End iterator invalidation rules, where the accepted answer suggests that the 2003 standard is ambiguous on the matter. This conclusion is based on a comment in 23.1/10 (in the context of swap()
) that seems to imply that when the spec does not explicitly mention invalidation of past-the-end iterators, they may be invalidated.
A comment on that post's question (by mike-seymour) suggests that C++11 is unambiguous on this matter, in the case of deque
s. My question is about all containers:
Said differently,
My question is about all containers:
I am not sure what you mean with "where this behavior is ambiguous in the language specification", but there certainly are operations that invalidate past-the-end operators (like insert into a std::vector
or std::string
).
Said differently,
You can trust the past-the-end iterator like any other iterator: Any operation that does not (potentially) invalidate iterators won't invalidate them. Except for the possibility of the standard sporting a bug, that is all operations where it doesn't say that they (potentially) invalidate operators.
You should be able to trust it if the standard says the operation will not invalidate iterators. Anything else should be treated as a bug in the standard library implementation.
至少在GCC中,迭代器对std :: map无效:
#include <set>
#include <stdlib.h>
#include <assert.h>
int main() {
std::set<int> a;
a.insert(1);
std::set<int>::reverse_iterator rit(a.rbegin());
++rit;
assert(rit==a.rend());
a.erase(a.begin());
assert(a.rend()==rit); // FAIL
}
链接地址: http://www.djcxy.com/p/73326.html
上一篇: 为什么这个向量迭代器不会失效?
下一篇: C ++