C++ 成員初始化列表

來源:互聯網
上載者:User

標籤:nbsp   style   pac   stream   建立   inf   EAP   model   c++   

1.什麼是成員初始化列表

#include<iostream>#include<string>using namespace std;class Weapon{private:    string name;    const string type;    const string model;public:    Weapon(string name, string type, string model) :name(name), type(type), model(model)    {        name = "Cloud";    }    string getProfile()    {        return "name: " + name + "\ntype: " + type + "\nmodel: " + model;    }};int main(void){    Weapon weapon("Comet", "carbine", "rifle");    cout << weapon.getProfile() << endl;    cin.get();    return 0;}

上面代碼中標紅的部分,就是成員初始化列表

 

注意觀察,建構函式裡的 name = "Cloud"; 被初始化列表的值覆蓋了

2.為什麼需要成員初始化列表

type和model都是常量,可以初始化但不能賦值,如果試圖在建構函式的函數體中進行如  type = "xxx";之類的 賦值,將會報錯。 從概念上講,在進入建構函式的函數體之前,對象已經被建立,所以必須在對象建立之前完成初始化,所以C++發明了初始化列表,這種形式的賦值被認為就是初始化。

請注意:1.這種格式只能用於建構函式;

    2.必須使用這種方式來初始化非靜態const資料成員(靜態const資料不屬於對象所以也就不能在建構函式裡初始化);

    3.必須用這種格式來初始化引用資料成員(這是因為引用與const資料類似,只能在建立時被初始化)

C++ 成員初始化列表

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.