Boost.Assign:将对象与map_list_of一起使用?
使用带有 boost 的 C++。在 Boost.Assign 中,我可以将 new 运算符与 map_list_of 一起使用吗?
例如:
std::map<int, MyObject*> objects = boost::assign::map_list_of
(1, new MyObject())(2, new MyObject())(3, new MyObject())
如果没有,还有其他方法吗?
Using C++ with boost. In Boost.Assign can I use the new operator with map_list_of?
For example:
std::map<int, MyObject*> objects = boost::assign::map_list_of
(1, new MyObject())(2, new MyObject())(3, new MyObject())
If not, is there another way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,它确实有效;调用 new 只是返回一个指向 MyObject 的指针,并且可以在该类型有效的任何地方使用它。 但是对 new 的调用可能会引发异常,或者 MyObject 的构造函数可能会引发异常,这意味着堆分配的 MyObject 的整个映射将被泄漏。
如果您想要异常安全并且不必费心删除这些对象,则应该使用智能指针:
It does work, yes; calling new just returns a pointer to MyObject, and it can be used anywhere that type is valid. HOWEVER the call to new might throw an exception, or MyObject's constructor might throw an exception, meaning your whole map of heap-allocated MyObjects will be leaked.
If you want exception safety as well as not having to bother deleting those objects, you should use a smart pointer instead:
看来是的。这与 VS2010 和 VS2010 编译得很好。提升1.47。
Seems yes. This compiles fine with VS2010 & boost 1.47.