接著就慢慢整理每個Item的重點,雖然很多觀念在 2/e 都講到爛了,不過還是做個筆記吧:
Item 1:View C++ as a feduration of language
C++是由四個次語言所組成:C,Object-Oriented C++,Template C++,STL。
Item 2:Prefer const, enums and inline to #define
除非必要,否則儘量使用 const, enums 還有 inline 來取代 define,
Item 3:Use const whenever possible
儘可能使用 const (常數,函式及operators)
Item 4:Make sure that objects are initialized before they're used
確保每個物件在使用前已經initialized
Item 5:Know what functions C++ silently writes and calls
了解 default constructors,default copy constructors 及 default assignment operator 如何被產生
Item 6: Explicitly disallow the use of compiler-generated functions you do not want
若不想使用 compiler 產生的東西,就想辦法拒絕 (宣告成private,只宣告,不定義 )
Item 7:Declare destructors virtual in polymorphic base classes
若你的繼承結構中有 virtual functions 的話,記得加上一個 virtual destructors
Item 8:Prevent exceptions form leaving destructors
在destructors中放入exceptions時,要注意是否完備 (在任何情形下,資源皆會被釋放)
Item 9:Never call virtual functions during constructors or destructors
別在 constructors 或 destructors 中呼叫 virtual functions
Item 10:Have assignment operators return a reference to *this
讓 assignment operators 回傳 *this
Item 11:Handle assignment to self in operator=
在assignment operator overloading 中,記得處理 a=a 的情形
Item 12:Copy all parts of an object
在做物件的 copy 時,記得把所有部分都 copy 好 (像是內含 pointer 的物件 )
to be continue...
沒有留言:
張貼留言