What is the lifetime and validity of C++ iterators?(C++ 迭代器的生命周期和有效性是多少?)
问题描述
我计划在 C++ 中实现一个事物列表,其中元素可能会被乱序删除.我不希望我需要任何形式的随机访问(我只需要定期扫描列表),并且项目的顺序也不重要.
I'm planning to implement a list of Things in C++ where elements might be removed out of order. I don't expect that i'll need any kind of random access (i just need to sweep the list periodically), and the order of items isn't important either.
所以我想到了std::list<Thing*>使用 this->position = insert(lst.end(), thing) 应该可以解决问题.我希望 Thing 类记住每个实例的位置,以便我以后可以在恒定时间内轻松地执行 lst.erase(this->position).
So I thought of std::list<Thing*> with this->position = insert(lst.end(), thing) should do the trick. I'd like the Thing class to remember the position of each instance so that i can later easily do lst.erase(this->position) in constant time.
但是,我对 C++ STL 容器还是有点陌生,我不知道将迭代器保留这么长时间是否安全.特别是考虑到在插入的 Thing 消失之前和之后会有其他元素被删除.
However, i'm still a bit new to C++ STL containers, and i don't know if it's safe to keep iterators for such a long time. Especially, given that there will be other elements deleted ahead and after the inserted Thing before it's gone.
推荐答案
在列表中,所有迭代器在插入过程中保持有效,只有擦除元素的迭代器在擦除过程中无效.
In list all iterators remain valid during inserting and only iterators to erased elements get invalid during erasing.
在您的情况下,即使在插入的 Thing* 前后删除其他元素时,保持迭代器也应该没问题.
In your case keeping iterator should be fine even when other elements deleted ahead and after the inserted Thing*.
编辑:
vector 和 deque 的更多细节:
Additional details for vector and deque:
向量:
- inserting --- 所有迭代器得到如果发生重新分配则无效,否则有效.
- 擦除----之后的所有迭代器擦除点无效.
双端队列:
- inserting --- 所有迭代器得到无效.
- 擦除 ---- 所有迭代器得到无效.
这篇关于C++ 迭代器的生命周期和有效性是多少?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ 迭代器的生命周期和有效性是多少?
基础教程推荐
- 这个宏可以转换成函数吗? 2022-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- C++结构和函数声明。为什么它不能编译? 2022-11-07
