您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“C++的構(gòu)造和析構(gòu)實例分析”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“C++的構(gòu)造和析構(gòu)實例分析”吧!
(1) 函數(shù)名和類名相同
(2) 沒有返回值
(3) 如果不寫構(gòu)造函數(shù),任何類中都存在一個默認(rèn)的構(gòu)造函數(shù)
I 默認(rèn)的構(gòu)造函數(shù)是無參的
II 當(dāng)我們自己寫了構(gòu)造函數(shù),默認(rèn)的構(gòu)造函數(shù)就不存在
(4) 構(gòu)造函數(shù)在構(gòu)造對象的時候調(diào)用
(5) delete可以用來刪掉默認(rèn)的函數(shù)
(6) 指定使用默認(rèn)的無參構(gòu)造函數(shù),用default說明
(7) 允許構(gòu)造函數(shù)調(diào)用另一個構(gòu)造函數(shù),只是要用初始化參數(shù)列表的寫法
(8) 初始化參數(shù)列表 : 只有構(gòu)造函數(shù)有
I 構(gòu)造函數(shù)名(參數(shù)1,參數(shù)2,…):成員1(參數(shù)1),成員2(參數(shù)2),…{}
II 避免形參名和數(shù)據(jù)成員名相同的導(dǎo)致問題
(1) 構(gòu)造函數(shù)用來構(gòu)造對象
(2) 構(gòu)造函數(shù)更多是用來初始化數(shù)據(jù)成員
(1)為什么不寫構(gòu)造函數(shù)可以構(gòu)造對象? 是因為存在一個默認(rèn)的無參構(gòu)造函數(shù),所以可以構(gòu)造無參對象
(2) 構(gòu)造函數(shù)重載為了什么? 為了構(gòu)造不同長相的對象。
#include <iostream> using namespace std; class MM { public: //MM() = delete; 刪掉默認(rèn)的構(gòu)造函數(shù) MM(string mmName, int mmAge) { name = mmName; age = mmAge; cout << "帶參構(gòu)造函數(shù)" << endl; } //MM() //{ // cout << "無參構(gòu)造函數(shù)" << endl; //} MM() = default; //使用的是默認(rèn)無參構(gòu)造函數(shù) void print() { cout << name << " " << age << endl; } protected: string name="Lisa"; int age=18; }; //為了能夠構(gòu)造不同長相的對象,我們會給構(gòu)造函數(shù)缺省處理 class Boy { public: //Boy(string mname="", int mage=19) //{ // name = mname; // age = mage; //} //上面函數(shù) 等效可以實現(xiàn)下面三個函數(shù)的功能 Boy() {} Boy(string mName) { name = mName; } //出錯:沒有與之匹配的構(gòu)造函數(shù) Boy(string mName, int mage) { name = mName; age = mage; } protected: string name; int age; }; //初始化參數(shù)列表的寫法 string girlName = "Baby"; class Student { public: Student(string mname="", int mage=18) :name(mname), age(mage) { cout << "初始化參數(shù)列表" << endl; //繼承和類的組合必須采用初始化參數(shù)列表寫法 } Student(int mage) :name(girlName), age(mage) {} protected: string name; int age; }; //構(gòu)造函數(shù)可以調(diào)用另一個構(gòu)造函數(shù)初始化數(shù)據(jù) class TT { public: TT(string name, int age) :name(name), age(age) {} //委托構(gòu)造:允許構(gòu)造函數(shù)調(diào)用另一個構(gòu)造函數(shù) TT():TT("默認(rèn)",18) {} //沒有給數(shù)據(jù)初始化 void print() { cout << name << "\t" << age << endl; } protected: string name; int age; }; int main() { //MM mm; 構(gòu)造無參的對象,需要無參構(gòu)造函數(shù) MM mm("mm", 28); mm.print(); MM girl; girl.print(); Boy boy1; Boy boy2("流浪之子"); Boy boy3("王子", 18); TT tt; tt.print(); return 0; }
(1) 無返回值
(2) 無參數(shù)
(3) 函數(shù)名: ~類名
(4) 不寫的話會存在默認(rèn)的析構(gòu)函數(shù)
(5) 析構(gòu)函數(shù)不需要自己 調(diào)用,對象死亡的之前會調(diào)用析構(gòu)函數(shù)
(1) 當(dāng)類中的數(shù)據(jù)成員是指針,并且動態(tài)申請內(nèi)存就需要手寫析構(gòu)
(2) 析構(gòu)函數(shù)用來釋放數(shù)據(jù)成員申請動態(tài)內(nèi)存
-> 拷貝構(gòu)造函數(shù)也是構(gòu)造函數(shù),長相和構(gòu)造函數(shù)一樣的,只是參數(shù)是固定 .拷貝構(gòu)造函數(shù)唯一的參數(shù)是對對象引用
-> 不寫拷貝構(gòu)造函數(shù),也存在一個默認(rèn)的拷貝構(gòu)造函數(shù)
-> 拷貝構(gòu)造函數(shù)作用: 通過一個對象去初始化另一個對象
I 什么時候調(diào)用拷貝構(gòu)造?
答:當(dāng)通過一個對象去創(chuàng)建出來另一個新的對象時候需要調(diào)用拷貝
II 拷貝構(gòu)造什么時候需要加const修飾參數(shù)?
答:當(dāng)存在匿名對象賦值操作的時候,必須要const修飾
#include <iostream> #include <string> using namespace std; class MM { public: MM() = default; MM(string name, int age) :name(name), age(age) {} void print() { cout << name << "\t" << age << endl; } //拷貝構(gòu)造 MM(const MM& mm) //MM girl(mm); { name = mm.name; //girl.name=mm.name age = mm.age; //girl.age=mm.age cout << "拷貝構(gòu)造" << endl; } protected: string name; int age; }; void printData(MM mm) //MM mm=實參; { mm.print(); } void printData2(MM& mm) //不存在拷貝本 { mm.print(); } int main() { MM mm("mm", 18); mm.print(); //顯示調(diào)用調(diào)用 cout << "顯示調(diào)用調(diào)用" << endl; MM girl(mm); //通過一個對象創(chuàng)建另一個對象 girl.print(); //隱式調(diào)用 cout << "隱式調(diào)用" << endl; MM girl2 = mm; //拷貝構(gòu)造 girl2.print(); MM girl3; girl3 = mm; //運(yùn)算符重載 girl3.print(); //函數(shù)傳參 cout << "第一種調(diào)用形態(tài)" << endl; printData(mm); cout << "第二種調(diào)用形態(tài)" << endl; printData2(mm); //無名對象 匿名對象 MM temp; temp = MM("匿名", 18); temp.print(); //匿名對象創(chuàng)建對象時候,拷貝構(gòu)造一定要用const修飾 MM temp2 = MM("匿名", 199); return 0; }
#include<iostream> #include <cstring> #include <string> using namespace std; class MM { public: MM(const char* mname, int age) :age(age) { name = new char[strlen(mname) + 1]; strcpy_s(name, strlen(mname) + 1, mname); } void print() { cout << name << "\t" << age << endl; } MM(const MM& object) { //name = object.name; name = new char[strlen(object.name) + 1]; strcpy_s(name, strlen(object.name) + 1, object.name); //name = object.name; age = object.age; } ~MM() { delete[] name; } protected: char* name; int age; }; int main() { { MM mm("baby", 19); MM girl(mm); MM gm = mm; mm.print(); girl.print(); gm.print(); } return 0; }
(1)普通對象,構(gòu)造順序和析構(gòu)順序是相反
(2)new出來的對象,delete會直接調(diào)用析構(gòu)函數(shù)
(3)static對象,當(dāng)程序關(guān)閉的時候,生命周期才結(jié)束,所以是最后釋放
#include <iostream> #include <string> using namespace std; class MM { public: MM(string name="x") :name(name) { cout << name; } ~MM(){ cout << name; } protected: string name; }; int main() { { MM mm1("A"); //A static MM mm2("B"); //B 程序關(guān)閉時候才死亡,最后析構(gòu) MM* p3 = new MM("C"); //C MM mm4[4]; //xxxx delete p3; //C delete 直接調(diào)用析構(gòu) p3 = nullptr; //xxxxAB } //ABCxxxxCxxxxAB return 0; }
#include <iostream> #include <string> using namespace std; struct MM { //默認(rèn)為公有屬性 //類中默認(rèn)屬性是私有屬性 //protected: string name; int age; public: MM(string name) :name(name) { cout << "構(gòu)造函數(shù)" << endl; } MM(const MM& object) { name = object.name; age = object.age; cout << "拷貝構(gòu)造" << endl; } ~MM() { } }; int main() { //采用創(chuàng)建時候賦值的方式,也是調(diào)用構(gòu)造函數(shù) //MM object = { "lisa",19 }; 錯誤,因為沒有兩個參數(shù)的構(gòu)造函數(shù) MM object = { "lisa" }; cout << object.name << "\t" << object.age << endl; //C++結(jié)構(gòu)體一旦寫了構(gòu)造函數(shù),就必須按照C++類的方式的去用 MM mm(object); cout << mm.name << "\t" << mm.age << endl; return 0; }
為什么要手動寫析構(gòu)函數(shù)? 因為默認(rèn)的不會釋放數(shù)據(jù)成員動態(tài)申請的內(nèi)存
函數(shù)名和類型相同函數(shù)叫做構(gòu)造函數(shù)
函數(shù)名字是~類名的無參函數(shù)叫做析構(gòu)函數(shù)
以對象的引用為參數(shù)的構(gòu)造函數(shù)叫做拷貝構(gòu)造函數(shù)(復(fù)制構(gòu)造函數(shù))
怎么寫出來,默認(rèn)的構(gòu)造函數(shù),就是那種在沒有傳參的時候的那一串垃圾值
class Boy { public: Boy() {} void print() { cout << a << "\t" << b << "\t" << c << endl; } protected: int a; int b; int c; }; int main() { return 0; }
到此,相信大家對“C++的構(gòu)造和析構(gòu)實例分析”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(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)容。