2007年12月24日 星期一

[note] More Effective C++ 2/e (2)

item 9:Use destructors to prevent resource leaks
使用 auto_ptr 配合 destructor,避免在 exception 發生時產生 resource leak。

item 10:Prevent resource leaks in constructors
注意 constructor 裡發生 exception 時,是否會產生 resource leak 及避免之。

item 11:Prevent exceptions from leaving destructors
當 destructor 產生 exception 時,別讓它被丟出 destructor (一定要處理之)。

item 12:Understand how throwing an exception differs from passing a parameter or calling a virtual function
了解丟出 exception 與傳遞一個參數或呼叫虛擬函式的不同。

item 13:Catch exceptions by reference
用 by reference 的方式來取得 exception。

item 14:Use exception specifications judiciously
明智地使用 exception specifications。

item 15:Understand the costs of exception handling
了解 exception handling 的成本。

item 16:Remember the 80-20 rule
讓 80% 的時間都在執行 20% 的程式碼。

item 17:Consider using lazy evaluation
考慮使用 lazy evaluation (拖挺戰術)。

item 18:Amortize the cost of expected computations
分期償還期的計算成本。

item 19:Understand the origin of temporary objects
了解暫時物件的產生時機。

item 20:Facilitate the return value optimization
了解並會協助 compiler 做 return value optimization。

item 21:Overload to avoid implicit type conversions
使用 overloding 技術來取代隱型轉型

item 22:Consider using op= instead of stand-alone op
使用 op= 來完成 op 的動作,例如使用 += 來完成 +。

item 23:Consider alternative libraries
考慮使用更理想的函式庫。

item 24: Understanding the costs of virtual functions, multiple inheritance, virtual base classes, and RTTI
了解虛擬函式、多重繼承、虛擬繼承及 RTTI 的成本。

沒有留言: