2007年12月12日 星期三

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

item 1:Distinguish between pointers and references
了解 pointer 及 reference 的差異。

item 2:Prefer C++-style casts
使用 C++ 的轉型。

item 3:Never treat arrays polymorphically
別以多型的方式來處理陣列。

item 4:Avoid gratuitous default constructors
非必要不提供 default constructors。

item 5:Be wary of user-defined conversion functions
小心隱式轉型所帶來的危險 ( 以explicit禁止之 )。

item 6:Distinguish between prefix and postfix forms of increment and decrement operators
了解前置式累加(減)與後置式累加(減)的本質及差異。

item 7:Never overload &&, ||, or ,
不覆寫 && || 及 ,,否則會影響傳統上 compiler 對於條件式的 short-circuit 特性。

item 8:Understand the difference meanings of new and delete
了解不同意義的 new 與 delete,如 new operator、operator new 及 placement new。

沒有留言: