中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

C++11中委托構造函數如何使用

發布時間:2021-06-21 18:48:46 來源:億速云 閱讀:217 作者:Leah 欄目:大數據

這篇文章將為大家詳細講解有關C++11中委托構造函數如何使用,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

C++11之前的狀況

構造函數多了以后,幾乎必然地會出現代碼重復的情況,為了避免這種情況,往往需要另外編寫一個初始化函數。例如下面的Rect類:

struct Point{
   int x;
   int y;
};
struct Rect{
   Rect(){
       init(0, 0, 0, 0, 0, 0);
   }
   Rect(int l, int t, int r, int b){
       init(l, t, r, b, lc, fc, 0, 0);
   }
   Rect(int l, int t, int r, int b,
         int lc, int fc){
       init(l, t, r, b, lc, fc);
   }
   Rect(Point topleft, Point bottomright){
       init(topleft.x, topleft.y,
       bottomright.x, bottomright.y,
        0, 0);
   }
   init(int l, int t, int r, int b,
         int lc, int fc){
       left = l; top = t;        
       right = r; bottom = b;
       line_color = lc;
       fill_color = fc;
       //do something else...
   }
   int left;
   int top;
   int right;
   int bottom;
   int line_color;
   int fill_color;    
};

數據成員初始化之后要進行某些其他的工作,而這些工作又是每種構造方式都必須的,所以另外準備了一個init函數供各個構造函數調用。

這種方式確實避免了代碼重復,但是有兩個問題:

  1. 沒有辦法不重復地使用成員初始化列表

  2. 必須另外編寫一個初始化函數。

C++11的解決方案

C++11擴展了構造函數的功能,增加了委托構造函數的概念,使得一個構造函數可以委托其他構造函數完成工作。使用委托構造函數以后,前面的代碼變成下面這樣:

struct Point{
   int x;
   int y;
};
struct Rect{
   Rect()
       :Rect(0, 0, 0, 0, 0, 0)
   {
   }
   Rect(int l, int t, int r, int b)
       :Rect(l, t, r, b, 0, 0)
   {
   }
   Rect(Point topleft, Point bottomright)
       :Rect(topleft.x, topleft.y,
            bottomright.x, bottomright.y,
            0, 0)
   {
   }
   Rect(int l, int t, int r, int b,
        int lc, int fc)
       :left(l), top(t), right(r),bottom(b),
         line_color(lc), fill_color(fc)
   {
       //do something else...
   }
   int left;
   int top;
   int right;
   int bottom;
   int line_color;
   int fill_color;
};

關于C++11中委托構造函數如何使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

c++
AI

绥中县| 湘西| 烟台市| 尼木县| 西畴县| 庄浪县| 芜湖县| 剑河县| 农安县| 蓝山县| 中宁县| 万荣县| 平度市| 三穗县| 微山县| 三亚市| 揭东县| 四会市| 贺州市| 潼南县| 县级市| 微博| 海林市| 衡山县| 宣威市| 玛纳斯县| 鸡西市| 乳源| 天祝| 扶风县| 永顺县| 沭阳县| 商都县| 会东县| 吉林市| 兰西县| 新丰县| 洛隆县| 虎林市| 中方县| 安宁市|