C++ 的生命周期和有效性是多少? 迭代器?

发布于 2024-07-17 09:34:24 字数 400 浏览 7 评论 0原文

我计划在 C++ 中实现一个事物列表,其中元素可能会被无序删除。 我不希望我需要任何类型的随机访问(我只需要定期扫描列表),并且项目的顺序也不重要。

所以我想到了 std::list; 使用 this->position = insert(lst.end(), thing)应该可以解决问题。 我希望 Thing 类记住每个实例的位置,以便以后可以在恒定时间内轻松执行 lst.erase(this->position)

然而,我对 C++ STL 容器还是有点陌生​​,我不知道保留迭代器这么长时间是否安全。 特别是,考虑到在插入的 Thing 消失之前,前面和后面还会有其他元素被删除。

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.

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.

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

故乡的云 2024-07-24 09:34:24

在列表中,所有迭代器在插入期间保持有效,只有擦除元素的迭代器在擦除期间无效。

在您的情况下,即使其他元素在插入的 Thing* 之前和之后被删除,保留迭代器也应该没问题。

编辑

向量和双端队列的其他详细信息:

向量

  • 插入---所有迭代器都得到
    如果发生重新分配则无效,
    否则其有效。
  • 擦除 ---- 之后的所有迭代器
    擦除点无效。

deque

  • 插入---所有迭代器都得到
    无效的。
  • 擦除 ---- 所有迭代器都得到
    无效的。

In list all iterators remain valid during inserting and only iterators to erased elements get invalid during erasing.

In your case keeping iterator should be fine even when other elements deleted ahead and after the inserted Thing*.

EDIT:

Additional details for vector and deque:

Vector:

  • inserting --- All iterators get
    invalid if reallocation happens,
    otherwise its valid.
  • erasing ---- All iterators after
    erase point get invalid.

deque:

  • inserting --- All iterators get
    invalid.
  • erasing ---- All iterators get
    invalid.
拍不死你 2024-07-24 09:34:24

这取决于您使用的容器。

检查:http://www.sgi.com/tech/stl/
查看最后的每个容器文档,它们将描述迭代器保持有效的条件。

对于 std::list<> 它们在所有条件下都保持有效,直到它们实际引用的元素从容器中删除(此时它们无效)。

This depends on the container you use.

Check: http://www.sgi.com/tech/stl/
Look at each containers documentation at the end their will be a description on the conditions that iterators stay valid under.

For std::list<> they remain valid under all conditions until the element they actually refer to is removed from the container (at this point they are invalid).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文