《Effective C#》Part I:第一部分总结

第一部分是语言使用的基础,而这是使用语言的基本功,也是平常最不注意的,养成好的习惯,有利于后期水平提高。

 

这部分包括前面11个单元,分别如下:

Item 1:   Always Use Properties Instead of Accessible Data Members

《Effective C#》Item 1:用属性来访问类的私有成员

 

Item 2:   Prefer readonly to const

《Effective C#》Item 2:定义常量的两种方法

 

Item 3:   Prefer the is or as Operators to Casts

《Effective C#》Item 3:使用as和is操作符来做类型转换

 

Item 4:   Use Conditional Attributes Instead of #if

《Effective C#》Item 4:使用Conditional属性来代替IF/ENDIF程序块

 

Item 5:   Always Provide ToString()

《Effective C#》Item 5:提供一个有意义的ToString函数

 

Item 6:   Distinguish Between Value Types and Reference Types

《Effective C#》Item 6:区分值类型和引用类型

 

Item 7:   Prefer Immutable Atomic Value Types

《Effective C#》Item 7:推荐使用不可改变的原子值类型

 

Item 8:   Ensure That 0 Is a Valid State for Value Types

《Effective C#》Item 8:确保“0”在值类型中是有效的

 

Item 9:   Understand the Relationships Among ReferenceEquals(), static Equals(),

              instance Equals(), and operator==

《Effective C#》Item 9:区别和认识四个判等函数

   

Item 10:        Understand the Pitfalls of GetHashCode()

《Effective C#》Item 10:小心GetHashCode函数所存在的陷阱

 

Item 11: Prefer foreach Loops

《Effective C#》Item 11:提倡使用foreach语句来进行循环操作

 

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/Knight94/archive/2006/08/21/1101230.aspx

posted @ 2010-01-26 11:51  Sue_娜  阅读(151)  评论(0编辑  收藏  举报