可能的重复:
什么是三法则?
我在以下程序中遇到了双重释放内存的问题。
调试器显示问题出在push_back()
函数中。
A类:
class A {
public:
A(int x);
int x;
};
A::A(int x) {
this->x = x;
}
B类:
class B {
public:
B(int x);
~B();
A* a;
};
B::B(int x) {
this->a = new A(x);
}
B::~B() {
delete a;
}
主功能:
int main() {
vector<B> vec;
for(int i = 0; i < 10; i++) {
vec.push_back(B(i)); <------------ Issue is here
}
cout << "adding complete" << endl;
for(int i = 0; i < 10; i++) {
cout << "x = " << (vec[i].a)->x << endl;
}
return 0;
}
这段代码有什么问题?
编辑:错误double free or memory corruption