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

溫馨提示×

溫馨提示×

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

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

《Effective C++》 讀書筆記之二 構造/析構/賦值運算

發布時間:2020-04-05 04:18:00 來源:網絡 閱讀:379 作者:313119992 欄目:編程語言

《Effective C++》 讀書筆記之二 構造/析構/賦值運算

條款10:令賦值(assignment)操作符返回一個reference to *this。

例子:

Widget& operator=(const Widget& rhs)
{
    ...
    return *this;//返回*this
}

2016-11-03 09:36:00


條款11:在operator= 中處理“自我賦值”。

例子:

class Widget{
    ...
    void swap(Widget& rhs);//交換*this與rhs的數據
    ...
};

//第一種合理安全的寫法
Widget& Widget::operator=(const Widget& rhs)
{
    BitMap * pOrg = pb;        //記住原先的pb
    pb = new BitMap(*rhs.pb);    //令pb指向*pb的一個復件(副本)
    delete pOrg;                //刪除原先的pb
    return *this;
}
//第二種合理安全的寫法
Widget& Widget::operator=(const Widget& rhs)
{
    Widget temp(rhs);
    swap(temp);
    return *this;
}

重點:

  1. 確保當對象自我賦值時operator= 有良好行為。其中技術包括比較“來源對象”與“目標對象”的地址、精心周到的語句順序、以及copy-and-swap。

  2. 確定任何函數如果操作一個以上的對象,而其中多個對象是同一個對象時,其行為仍然正確。

2016-11-03 10:23:50


條款12:復制對象時勿忘其每一個成分。Copy all parts of an object.

例子:

void logCall(const std::string& funcName);
class Customer{
public:
    Customer(const Customer& rhs);.
    Customer& operator=(const Customer& rhs);
private:
    std::string name;
};
Customer::Customer(const Customer& rhs)
    :name(rhs.name) //復制所有成員,防止局部拷貝(partial copy )
{
    logCall("Customer copy constructor");
}
Customer& Customer::operator=(const Customer& rhs)
{
    logCall("Customer copy assignment operator");
    name = rhs.name;
    return *this;
}
class PriorityCustmer: public Custmer //一個derived class
{
public:
    PriorityCustomer(const PriorityCustomer& rhs);
    PriorityCustomer& operator=(const PriorityCustomer& rhs);
private:
    int priority
};
PriorityCustomer::PriorityCustomer(const PriorityCustomer& rhs)
    :Customer(rhs),//調用base class的copy構造函數,如果不調用,會調用Customer的default構造函數
    priority(rhs.priority)
{
    logCall("PriorityCustomer copy constructor");
}
PriorityCustomer&
PriorityCustomer::operator=(const PriorityCustomer& rhs)
{
    logCall("PriorityCustomer copy assignment operator");
    Customer::operator=(rhs);//對base class成分進行賦值動作
    priority=rhs.priority;
    return *this;
}

重點:

  1. Copying函數應該確保復制“對象內的所有成員變量”及“所有base class成分”。

  2. 不要嘗試以某個copying函數實現另一個copying函數。應該將共同機能放進第三個函數中,比如init(),并由兩個copying函數共同調用。

2016-11-03 11:20:20


向AI問一下細節

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

AI

巴塘县| 新野县| 万山特区| 阿尔山市| 兴安县| 盐边县| 汨罗市| 海阳市| 嘉祥县| 浮梁县| 专栏| 余庆县| 沭阳县| 克什克腾旗| 增城市| 如东县| 贵州省| 分宜县| 囊谦县| 永城市| 错那县| 五原县| 正阳县| 汉寿县| 佛坪县| 城固县| 金秀| 隆尧县| 永安市| 阳谷县| 修武县| 义马市| 广丰县| 大冶市| 宝山区| 诏安县| 长子县| 桃园市| 佛坪县| 陆丰市| 安新县|