重複の可能性:
3 つのルールとは?
次のプログラムでメモリが二重に解放されるという問題があります。
デバッガーは、問題が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