91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

c++對象構造順序和析構函數舉例分析

發布時間:2021-11-24 16:37:15 來源:億速云 閱讀:130 作者:iii 欄目:大數據

本篇內容介紹了“c++對象構造順序和析構函數舉例分析”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

一、對象的構造順序:

1、對于局部對象:

當程序執行流到達對象的定義語句時進行構造。下面還是用代碼來解析這句話:

#include <stdio.h>

class Test
{
     private:
        int mi;
     public:
        Test(int i)
        {
            mi=i;
            printf("Test(int i) is %d\n",mi);
        }
        Test(const Test& obj)
        {
            mi=obj.mi;
            printf("Test(const Test&) obj is %d\n",mi);
        }
};
int main()
{

    int i = 0 ;
     Test a1 =i;//Test(int i):0
     while(i<3)
     {
        Test a2 = ++i;//Test(int i):1,2,3
     }
     if(i<4)
     {
        Test a = a1; //Test(const Test& obj is :0
     }
     else
     {
        Test a(100);

     }
     return 0;
}

 

輸出結果:

Test(int i) is 0
Test(int i) is 1
Test(int i) is 2
Test(int i) is 3
Test(const Test& obj) is 0

 

這里我們可以看出當程序流執行到相應的構造對象的那條執行語句時,就會調用構造函數(或者拷貝構造函數)。goto語句想必大家不陌生,但是都害怕這玩意,下面我們加入goto語句看看會產生什么現象:

#include <stdio.h>
class Test{
private:
    int mi;
public:
    Test(int i)
   {
        mi=i;
        printf("Test(int i) is %d\n",mi);

    }
    Test(const Test& obj)
    {
       mi=obj.mi;
       printf("Test(const Test& obj is %d\n",mi);

    }

};
int main()
{
   int i = 0;  //Test(int i) :0
   Test a1 = i;
   while( i <3)
   {
        Test a2 = ++i;  //Test(int i) :1,2,3
    }
goto end;
   if(i <4)
    {
       Test a = a1;//Test(const Test&) obj is :0
  }
    else
    {
       Test a(100);
     }
end:
    return 0;
}

 

輸出結果:

Test(int i) is 0
Test(int i) is 1
Test(int i) is 2
Test(int i) is 3
 

從結果我們可以看出從if那條語句就被跳過了,沒有執行到,這里這樣寫的目的是為了引出,當你使用goto語句,把對象給屏蔽了,后面你不能使用這個對象了,不然程序會出現大問題:

#include <stdio.h>
class Test{
private:
    int mi;
public:
    Test(int i)
   {
        mi=i;
        printf("Test(int i) is %d\n",mi);

    }
    Test(const Test& obj)
    {
       mi=obj.mi;
       printf("Test(const Test& obj is %d\n",mi);
    }
    int getMi()
     {
         return mi;
     }
};
int main()
{
   int i = 0;  //Test(int i) :0
   Test a1 = i;
   while( i <3)
   {
        Test a2 = ++i;  //Test(int i) :1,2,3
    }
goto end;
      Test a(100);
end:
     printf("a.mi is %d\n",a.getMi());

    return 0;
}

 

輸出結果:

tt.cpp: In function ‘int main()’:
tt.cpp:32:1: error: jump to label ‘end’ [-fpermissive]
 end:
 ^
tt.cpp:30:6: error:   from here [-fpermissive]
 goto end;
      ^
tt.cpp:31:12: error:   crosses initialization of ‘Test a’
       Test a(100);
            ^

 

這里就是上面所說了的,對象被goto語句給屏蔽了,后面就不能使用這個對象來進行操作了。

2、對于堆對象:

  • 當程序執行流到達new語句時創建對象

  • 使用new創建對象將自動觸發構造函數的調用

代碼演示:

#include <stdio.h>

class Test
{
private:
    int mi;
public:
    Test(int i)
    {
        mi = i;
        printf("Test(int i): %d\n", mi);
    }
    Test(const Test& obj)
    {
        mi = obj.mi;
        printf("Test(const Test& obj): %d\n", mi);
    }
    int getMi()
    {
        return mi;
    }
};

int main()
{
    int i = 0;
    Test* a1 = new Test(i); // Test(int i): 0
        
    while( ++i < 10 )
        if( i % 2 )
            new Test(i); // Test(int i): 1, 3, 5, 7, 9
        
    if( i < 4 )
        new Test(*a1);
    else
        new Test(100); // Test(int i): 100
        
    return 0;
}

 

輸出結果:

Test(int i): 0
Test(int i): 1
Test(int i): 3
Test(int i): 5
Test(int i): 7
Test(int i): 9
Test(int i): 100

 

3、對于全局對象:

  • 對象的構造順序是不確定的

  • 不同的編譯器使用不同的規則來確定構造順序。

同樣還是來看代碼示例,這里我創建了幾個文件:tes1.cpp   test2.cpp   test3.cpp   test4.cpp    test.h;他們的內容如下:

test1.cpp:

#include "test.h"

Test t4("t4");

int main()
{
    Test t5("t5");
}
 

test2.cpp:

#include "test.h"

Test t1("t1");

 

test3.cpp:

#include "test.h"

Test t2("t2");

 

test4.cpp:

#include "test.h"

Test t3("t3");

 

test.h:

#ifndef _TEST_H_
#define _TEST_H_

#include <stdio.h>

class Test
{
public:
    Test(const char* s)
    {
        printf("%s\n", s);
    }
};

#endif

 

最后輸出結果:

root@txp-virtual-machine:/home/txp# g++ test1.cpp test2.cpp test3.cpp test4.cpp -o put
root@txp-virtual-machine:/home/txp# ./put
t4
t1
t2
t3
t5

 

4、小結:

  • 局部對象的構造順序依賴程序的執行流

  • 堆對象的構造順序依賴于new的使用順序

  • 全局對象的構造順序是不確定的

二、析構函數:

1、c++的類中可以定義一個特殊的清理函數,叫做析構函數,這個函數的功能與構造函數相反,顧名思義就是銷毀的意思了。

2、定義:~ClassName()

  • 析構函數沒有參數也沒有返回值類型聲明

  • 析構函數在對象銷毀時自動被調用

代碼示例:

#include <stdio.h>

class Test
{
    int mi;
public:
    Test(int i)
    {
        mi = i;
        printf("Test(): %d\n", mi);
    }
    ~Test()
    {
        printf("~Test(): %d\n", mi);
    }
};

int main()
{
    Test t(1);
    
    Test* pt = new Test(2);
    
    delete pt;
    
    return 0;
}

 

輸出結果:

Test(): 1
Test(): 2
~Test(): 2
~Test(): 1

 

3、析構函數的定義準則:

當類中自定義了構造函數,并且析構函數中使用了系統資源(比如說,內存的申請,文件打開),那么就需要自定義析構函數了。

“c++對象構造順序和析構函數舉例分析”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

海宁市| 临夏市| 大新县| 临城县| 明溪县| 海城市| 龙川县| 安平县| 华亭县| 象山县| 乌苏市| 衢州市| 孝感市| 巧家县| 孟连| 河北区| 文安县| 舒兰市| 临江市| 鞍山市| 涿州市| 双桥区| 广元市| 大埔县| 桐庐县| 白山市| 贵州省| 信丰县| 景谷| 兴国县| 五原县| 沙坪坝区| 独山县| 罗源县| 阿拉尔市| 南岸区| 邯郸市| 泰州市| 绥宁县| 乃东县| 黄浦区|