下面這段代碼對象在析構的時候判斷了指針是否為空再進行操作,為何還會出現double free 的問題?
#include<iostream>
using namespace std;
class base {
public:
base(int *a):p(a) {}
base(int num) :p(new int(num)) {}
base(base& mid) :p(mid.p) {
cout << "base is constructing!\n";
if (p != NULL) cout << "p is not NULL!\n";
}
~base() {
if (p != NULL ) {
delete p;
p = NULL;
}
if (p == NULL)
cout << "p is NULL!\n";
}
private:
int *p;
};
int main() {
base one(1);
base two(one);
}
這樣寫會報錯的,同一個地址被釋放兩次。原因:
p1=new int;
p2=p1;
現在要釋放p2了,
delete p2;
p2=NULL;
但是p1還是以前那個地址,它怎麼會是NULL?
再次釋放這個地址會報錯(野指針)
你這個就是淺拷貝引起的~