vector of pointer to object - how to avoid memory leak?(指向对象的指针向量 - 如何避免内存泄漏?)
问题描述
我们通常如何处理一个元素是指向对象的指针的向量?我的具体问题是下面提供的代码末尾的注释.谢谢.
How do we ususaly deal with a vector whose elements are pointers to object? My specific question is the comment at the end of the code supplied below. Thanks.
class A
{
public:
virtual int play() = 0 ;
};
class B : public A
{
public:
int play() {cout << "play in B " << endl;};
};
class C : public A
{
public:
int play() {cout << "play in C " << endl;};
};
int main()
{
vector<A *> l;
l.push_back(new B());
l.push_back(new C());
for(int i = 0 ; i < l.size();i++)
{
l[i]->play();
}
//Do i have to do this to avoid memory leak? It is akward. Any better way to do this?
for(int i = 0 ; i < l.size();i++)
{
delete l[i];
}
}
推荐答案
是的,您必须这样做才能避免内存泄漏.更好的方法是制作一个共享指针向量(boost、C++TR1、C++0x、)
Yes, you have to do that to avoid memory leak. The better ways to do that are to make a vector of shared pointers (boost, C++TR1, C++0x, )
std::vector<std::tr1::shared_ptr<A> > l;
或唯一指针向量 (C++0x) 如果对象实际上不是在此容器和其他对象之间共享
or vector of unique pointers (C++0x) if the objects are not actually shared between this container and something else
std::vector<std::unique_ptr<A>> l;
或使用 boost 指针容器
boost::ptr_vector<A> l;
PS:不要忘记 A 的虚拟析构函数,正如@Neil Butterworth 所说!
PS: Don't forget A's virtual destructor, as per @Neil Butterworth!
这篇关于指向对象的指针向量 - 如何避免内存泄漏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:指向对象的指针向量 - 如何避免内存泄漏?


- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- C++ 协变模板 2021-01-01
- 近似搜索的工作原理 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 静态初始化顺序失败 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 从python回调到c++的选项 2022-11-16