關於解構函式與記憶體

來源:互聯網
上載者:User

#include "stdafx.h"
#include "iostream"
using namespace std;
class A{
private:
int a;
public:
A(int b = 10):a(b){cout<<"struct"<<endl;}
~A(){cout<<"destruct"<<endl;}
void start() {
cout<<a<<endl;
}
void set(int n) {
a = n;
}
};
int _tmain(int argc, _TCHAR* argv[])
{
A* b;
{
A a(2);
b = &a;
b->start();

}

//此時a已經被析構了。

b->set(3);

b->start(); //這裡a已經被析構了,為什麼這裡不報錯呢!?

//析構的時候,為了效率,並不會將記憶體清0。這樣的話。對象的空間仍在那裡放著,只是別人現在能夠用了。\
如果內部沒有得破壞,指標依然指向那麼空間,所以可以繼續操作。所以指標用完後要置NULL,否則仍然指向那片空間。\
如果空間被別的程式佔用了,但是這個指標仍然指向他。如果這個指標被誤操作使用了這片記憶體,就會破壞別的程式的
結構了。

getchar();
return 0;

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.