溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP虛析構(gòu)函數(shù)怎么用

發(fā)布時間:2022-04-06 16:22:45 來源:億速云 閱讀:265 作者:iii 欄目:編程語言

這篇文章主要講解了“PHP虛析構(gòu)函數(shù)怎么用”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“PHP虛析構(gòu)函數(shù)怎么用”吧!

預(yù)備知識

用一個例子來說明虛析函數(shù)的必要性.在程序清單1中,基類A的構(gòu)造函數(shù)動態(tài)分配5個字節(jié),其析構(gòu)函數(shù)負(fù)責(zé)釋放這塊內(nèi)存.派生類Z的構(gòu)造函數(shù)動態(tài)分配5000個字節(jié),其析構(gòu)函數(shù)負(fù)責(zé)釋放這塊內(nèi)存.

程序清單1
#include <iostream>
using namespace std;

class A{ // base class
	public:
		A(){
			 cout<<"A() firing"<<endl;
			 p = new char[5]; // allocate 5 bytes
			
		}
		~A(){
			cout<<"~A() firing"<<endl;
			delete[] p;// free 5 bytes
		}
	
	private:
		char *p;
};

class Z: public A {//derived class
	public:
		Z(){
			cout<<"Z() firing"<<endl;
			q = new char[5000];//allocate 5000 bytes
		}			
		~Z(){
			cout<<"~Z() firing"<<endl;
			delete[] q; //free 50000 bytes
		}
	
	 private:
			char *q;
};

void f();


int main(){
	for(unsigned i =0; i<3; i++)
		f();
	return 0;
}

void f(){
	A *ptr; //pointer to base class
	ptr = new Z(); // pointer to derived class object
	delete ptr; //~A() fires but not ~z()
}//***** Caution:50000 bytes of inaccessible storage

在main中三次調(diào)用f函數(shù):

void f(){
	A *ptr; //pointer to base class
	ptr = new Z(); // pointer to derived class object
	delete ptr; //~A() fires but not ~z()
}//***** Caution:50000 bytes of inaccessible storage

由于類A和Z的構(gòu)造函數(shù)與析構(gòu)函數(shù)輸出了跟蹤信息,程序運行的結(jié)果如圖所示:

PHP虛析構(gòu)函數(shù)怎么用將析構(gòu)函數(shù)聲明為虛成員函數(shù)可以解決程序清單1中的問題:

class A{ // base class
	public:
		A(){
			 cout<<"A() firing"<<endl;
			 p = new char[5]; // allocate 5 bytes
			
		}
		virtual ~A(){
			cout<<"~A() firing"<<endl;
			delete[] p;// free 5 bytes
		}
	
	private:
		char *p;
};
.......

通過定義基類的析構(gòu)函數(shù)~A()為虛成員函數(shù),可以確保其派生類的析構(gòu)函數(shù)也為虛成員函數(shù).為了使代碼更清晰,我們可以明確地使用關(guān)鍵字virtual來聲明~Z(),不過即使我們不這樣做,~Z()仍然為虛成員函數(shù),修改后的程序輸出如下圖所示:

PHP虛析構(gòu)函數(shù)怎么用現(xiàn)在,由于析構(gòu)函數(shù)已經(jīng)聲明為虛成員函數(shù),當(dāng)通過ptr來刪除其所指針的對象時,編譯器進(jìn)行的是運行期綁定.在這里,因為ptr指向一個Z類型的對象,所以~Z()被調(diào)用.我們看到隨后~A()也被調(diào)用了,這是通過將析構(gòu)函數(shù)定義為虛成員函數(shù),我們就保證了在調(diào)用f時不會產(chǎn)生內(nèi)存遺漏.

感謝各位的閱讀,以上就是“PHP虛析構(gòu)函數(shù)怎么用”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對PHP虛析構(gòu)函數(shù)怎么用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI