C++堆與拷貝構(gòu)造函數(shù)

c++創(chuàng)建malloc

  • 簡(jiǎn)單版
#include<iostream>
using namespace std;
class Test
{
public:
    Test()
    {
        cout<<"Test construct"<<endl;
    }
    ~Test()
    {
        cout<<"~~~~~Test"<<endl;
    }
};
int main()
{
    Test *t=new Test;
    cout<<"========="<<endl;
    delete t;
}

//結(jié)果為:Test construct
//===========
//~~~~~~~~~Test

#include<iostream>
#include<stdlib.h>
using namespace std;
class Test
{
public:
    Test(int a)
    {
        cout<<"Test construct"<<a<<endl;
    }
    ~Test()
    {
        cout<<"~~~~~Test"<<endl;
    }
};
int main()
{
    Test *t=new Test(5);
    cout<<"========="<<endl;
    delete t;
}

//結(jié)果為:Test construct5
//===========
//~~~~~~~~~Test

#include<iostream>
#include<stdlib.h>
using namespace std;
class Test
{
public:
    Test(int a)
    {
        cout<<"Test construct"<<a<<endl;
    }
    Test()
    {
        cout<<"Test construct"<<endl;
    }
    ~Test()
    {
        cout<<"~~~~~Test"<<endl;
    }
};
int main()
{
    Test *t=new Test[5];//只能調(diào)用無參的
    cout<<"========="<<endl;
    delete[] t;
}
//運(yùn)行結(jié)果如下
//Test contruct
//Test contruct
//Test contruct
//Test contruct
//Test contruct
//===========
//~~~~~~~~~Test
//~~~~~~~~~Test
//~~~~~~~~~Test
//~~~~~~~~~Test
//~~~~~~~~~Test

使用堆空間的原因

  1. 直到運(yùn)行時(shí)才能知道需要多少對(duì)象空間炫狱;
  2. 不知道對(duì)象的生存期到底有多長(zhǎng);
  3. 直到運(yùn)行時(shí)才知道一個(gè)對(duì)象需要多少內(nèi)存空間咽瓷。

拷貝構(gòu)造函數(shù)

  1. 系統(tǒng)默認(rèn)的拷貝構(gòu)造函數(shù)
#include<iostream>
using namespace std;
class Test
{
    int m_a;
public:
    Test(int a)
    {
        m_a=a;
        cout<<"Test construct"<<a<<endl;
    }
    ~Test()
    {
        cout<<"~~~~Test"<<endl;
    }
    void show()
    {
        cout<<"m_a = "<<m_a<<endl;
    }
    Test(const Test &q)
    {
        m_a=q.m_a;
    }
};

int main()
{
    Test t1(10);
    t1.show();
    Test t2(t1);
    t2.show();
}

//結(jié)果為:
//Test contruct10;
//m_a=10;
//m_a=10;
//~~~~~~~~Test
//~~~~~~~Test

  1. 系統(tǒng)默認(rèn)的構(gòu)造函數(shù)
#include<iostream>
using namespace std;
class Test
{
    int m_a;
public:
    Test(int a)
    {
        m_a=a;
        cout<<"Test construct"<<a<<endl;
    }
    ~Test()
    {
        cout<<"~~~~Test"<<endl;
    }
    void show()
    {
        cout<<"m_a = "<<m_a<<endl;
    }
    /*Test(const Test &q)
    {
        m_a=q.m_a;
    }*////默認(rèn)構(gòu)造函數(shù)只能完成淺拷貝将饺,將形參傳給自身

};
void hello(Test temp)
{
    temp.show();
}

int main()
{
    Test t1(10);
    t1.show();
    Test t2(t1)
    t2.show();
    hello(t1);
}


//結(jié)果為:
//Test contruct10;
//m_a=10;
//m_a=10;
//~~~~~~~~Test
//~~~~~~~Test


  • 深拷貝
#include<iostream>
using namespace std;
class Test
{
    int *m_a;//定義指針類型時(shí)案站,系統(tǒng)默認(rèn)的拷貝構(gòu)造函數(shù)已經(jīng)過不去了
public:
    Test(int a)
    {
        m_a=new int;
        *m_a=a;
        cout<<"Test construct"<<*m_a<<endl;
    }
    ~Test()
    {
        cout<<"~~~~Test"<<*m_a<<endl;
        delete m_a;
    }
    void show()
    {
        cout<<"m_a = "<<*m_a<<endl;
    }
    Test(const Test &q)//所以要認(rèn)為的重新定義
    {
        m_a=new int;
        *m_a=*q.m_a;
    }
};
int main()
{
    Test t1(10);
    t1.show();
    Test t2(t1);
    t2.show();
}


//結(jié)果為:
//Test contruct10;
//m_a=10;
//m_a=10;
//~~~~~~~~Test10
//~~~~~~~Test10

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市枉证,隨后出現(xiàn)的幾起案子矮男,更是在濱河造成了極大的恐慌,老刑警劉巖室谚,帶你破解...
    沈念sama閱讀 211,290評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件毡鉴,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡秒赤,警方通過查閱死者的電腦和手機(jī)眨补,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來倒脓,“玉大人撑螺,你說我怎么就攤上這事∑槠” “怎么了甘晤?”我有些...
    開封第一講書人閱讀 156,872評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵含潘,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我线婚,道長(zhǎng)遏弱,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,415評(píng)論 1 283
  • 正文 為了忘掉前任塞弊,我火速辦了婚禮漱逸,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘游沿。我一直安慰自己烛卧,他們只是感情好卦绣,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,453評(píng)論 6 385
  • 文/花漫 我一把揭開白布秸仙。 她就那樣靜靜地躺著咙崎,像睡著了一般。 火紅的嫁衣襯著肌膚如雪眯勾。 梳的紋絲不亂的頭發(fā)上枣宫,一...
    開封第一講書人閱讀 49,784評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音吃环,去河邊找鬼也颤。 笑死,一個(gè)胖子當(dāng)著我的面吹牛郁轻,可吹牛的內(nèi)容都是我干的歇拆。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼范咨,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼故觅!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起渠啊,我...
    開封第一講書人閱讀 37,691評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤输吏,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后替蛉,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體贯溅,經(jīng)...
    沈念sama閱讀 44,137評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,472評(píng)論 2 326
  • 正文 我和宋清朗相戀三年躲查,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了它浅。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,622評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡镣煮,死狀恐怖姐霍,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤镊折,帶...
    沈念sama閱讀 34,289評(píng)論 4 329
  • 正文 年R本政府宣布胯府,位于F島的核電站,受9級(jí)特大地震影響恨胚,放射性物質(zhì)發(fā)生泄漏骂因。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,887評(píng)論 3 312
  • 文/蒙蒙 一赃泡、第九天 我趴在偏房一處隱蔽的房頂上張望寒波。 院中可真熱鬧,春花似錦升熊、人聲如沸俄烁。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽猴娩。三九已至阴幌,卻和暖如春勺阐,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背矛双。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來泰國打工渊抽, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人议忽。 一個(gè)月前我還...
    沈念sama閱讀 46,316評(píng)論 2 360
  • 正文 我出身青樓懒闷,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國和親栈幸。 傳聞我的和親對(duì)象是個(gè)殘疾皇子愤估,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,490評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容