我正在阅读“ list::splice ”的工作原理,但我不明白:
mylist1.splice (it, mylist2); // mylist1: 1 10 20 30 2 3 4
// mylist2 (empty)
// "it" still points to 2 (the 5th element)
mylist2.splice (mylist2.begin(),mylist1, it);
// mylist1: 1 10 20 30 3 4
// mylist2: 2
// "it" is now invalid.
it = mylist1.begin();
std::advance(it,3); // "it" points now to 30
mylist1.splice ( mylist1.begin(), mylist1, it, mylist1.end());
// mylist1: 30 3 4 1 10 20
在第一个和第三个拼接中,it迭代器仍然有效,但为什么它在第二个拼接中不存在?
根据文档:
迭代器有效性
调用前与容器相关的迭代器、指针和引用没有变化。引用传输元素的迭代器、指针和引用继续引用那些相同的元素,但迭代器现在迭代到元素已被传输到的容器中。
因此它应该仍然有效