从 boost::ptr_list 列表中删除单个指针?
如果我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pop_back()
命令删除最后一个列表的元素。 Boost 的ptr_list
实现封装了一个std::list
,因此 此页面对于Boost的指针包装器同样有效。由于您更改了问题,请参阅擦除命令。除非使用 std::list 接口,否则您找不到答案。
The
pop_back()
command deletes the last element of a list. Boost's implementation ofptr_list
encapsulates astd::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.