您好,登錄后才能下訂單哦!
《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; }
重點:
確保當對象自我賦值時operator= 有良好行為。其中技術包括比較“來源對象”與“目標對象”的地址、精心周到的語句順序、以及copy-and-swap。
確定任何函數如果操作一個以上的對象,而其中多個對象是同一個對象時,其行為仍然正確。
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; }
重點:
Copying函數應該確保復制“對象內的所有成員變量”及“所有base class成分”。
不要嘗試以某個copying函數實現另一個copying函數。應該將共同機能放進第三個函數中,比如init(),并由兩個copying函數共同調用。
2016-11-03 11:20:20
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。