2007年10月12日 星期五

[note] Effective C++ 3/e (1)

雖然以前已經把 Effective C++ 2/e 看完了,但那本書的出版時間已經是六年前了,上週逛天瓏就順手再買了 Effective C++ 3/e,翻了一下,內容上第三版與第二版其實差異不大,主要還是在談論一些 C++ 的開發經驗,以及一些重要而且常會犯錯誤,並且刪除了一些過時的 item,增加了一些新的東西,如 Boost 及 multi-threads 的開發注意事項。許多 C++ 開發者給 Effective C++ 的評論都是:沒有讀過 Effective C++ 及 More Effective C++ 的話,別說你懂 C++。

接著就慢慢整理每個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...

沒有留言: