STL算法删除容器中的所有对象?

发布于 2024-12-07 10:29:52 字数 220 浏览 0 评论 0原文

是否有 STL 实用程序/算法可以对所有对象执行 delete *the_object_iterator; 操作?这样我就可以安全地 clear() 了? STL 容器是一个集合,对象是指向使用new 创建的C++ 类的指针。

Boost 似乎是最好的解决方案。我的目标是避免对不可复制的类进行复制构造。

Is there a STL utility/algorithm to do delete *the_object_iterator; on all the objects? So that I can clear() safely? The STL container is a set and the objects are pointers to C++ classes created with new.

Boost seems to be the best solution. My goal was to avoid copy-construction on noncopyable classes.

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

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

发布评论

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

评论(3

断桥再见 2024-12-14 10:29:52

使用智能指针来保存类指针

std::set<std::unique_ptr<MyClass> > mySet;

Use a smart pointer to hold the class pointers

std::set<std::unique_ptr<MyClass> > mySet;
记忆で 2024-12-14 10:29:52

据我所知,没有标准的算法来删除所有对象。但是,您可以轻松构建一个:

template< typename T > invoke_delete( T* ptr ){ delete ptr; }

std::for_each( set.begin(), set.end(), &invoke_delete< set_value_type > );

As far as I know, there is no standard algorithm to delete all objects. However, you can build up one easily:

template< typename T > invoke_delete( T* ptr ){ delete ptr; }

std::for_each( set.begin(), set.end(), &invoke_delete< set_value_type > );
少女的英雄梦 2024-12-14 10:29:52

Boost 指针容器是正确的选择。

它们不仅存储动态分配的对象。但是这些对象可以作为引用进行访问,这使得在对象上使用标准算法变得更加容易。

boost::ptr_set<MyClass>   setData;

setData.insert(new MyClass);

Boost pointer containers are the way to go.

Not only do they store the dynamically allocated objects. But the objects are accessible as references which makes using the standard algorithms on the the object that much easier.

boost::ptr_set<MyClass>   setData;

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