从 boost::ptr_list 列表中删除单个指针?

发布于 2024-08-15 20:23:15 字数 231 浏览 7 评论 0原文

如果我在 boost::ptr_list 容器中创建一堆元素,如何从中删除单个指针?假设我这样做:

boost::ptr_list intlist; int *i = 新 int(3); intlist.Add(i); int *i2 = 新 int(1); intlist.Add(i2); int *i3 = 新 int(6); intlist.Add(i3);

如何从列表中删除 i3 而不是 i 或 i2?

If I create a bunch of elements in a boost::ptr_list container how can I remove individual pointers from it? Say I do this:

boost::ptr_list intlist;
int *i = new int(3);
intlist.Add(i);
int *i2 = new int(1);
intlist.Add(i2);
int *i3 = new int(6);
intlist.Add(i3);

How can I remove say i3 and not i or i2 from the list?

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

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

发布评论

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

评论(1

梦里梦着梦中梦 2024-08-22 20:23:15

pop_back() 命令删除最后一个列表的元素。 Boost 的 ptr_list 实现封装了一个 std::list,因此 此页面对于Boost的指针包装器同样有效。

由于您更改了问题,请参阅擦除命令。除非使用 std::list 接口,否则您找不到答案。

The pop_back() command deletes the last element of a list. Boost's implementation of ptr_list encapsulates a std::list, so all of the commands on this page are equally valid with Boost's pointer wrappers.

Since you changed your question, see the erase command. You won't find an answer except by using the std::list interface.

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