C#命名规则和风格

C#命名规则和风格

ID:37926705

大小:89.50 KB

页数:14页

时间:2019-06-02

C#命名规则和风格_第1页
C#命名规则和风格_第2页
C#命名规则和风格_第3页
C#命名规则和风格_第4页
C#命名规则和风格_第5页
资源描述:

《C#命名规则和风格》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、1.命名规则和风格 NamingConventionsandStyle1.类和方法名采用Pascal风格   UsePascalcasingfortypeandmethodnames   publicclassSomeClass   {      publicSomeMethod(){}   }2.局部变量和方法参数采用camel风格   Usecamelcasingforlocalvariablenamesandmethodarguments   intnumber;   voidMyMethod(intsomeNumber)   {}3.接口名采用I作为前缀   Pref

2、ixinterfacenamewithI    interfaceIMyInterface   {..}4.私有成员变量采用m_作为前缀   Prefixprivatemembervariableswithm_   publicclassSomeClass   {      privateintm_Number;   }5.自定义属性类名采用Attribute作为后缀   SuffixcustomattributeclasseswithAttribute. 6.自定义异常类名采用Exception作为后缀   SuffixcustomexceptionclasseswithE

3、xception.7.采用动词-对象对命名方法,例如ShowDialog()   Namemethodsusingverb-objectpair,suchasShowDialog()8.有返回值的方法应该取名表示其返回值,例如GetObjectState()   Methodswithreturnvaluesshouldhaveanamedescribingthevaluereturned,suchasGetObjectState().9.采用描述性的变量名。   Usedescriptivevariablenames.   a)避免采用单字母的变量名,如i或t;而是采用in

4、dex或temp。      Avoid singlecharactervariablenames,suchasior t.Use indexortempinstead.    b)对public和protected成员避免采用用匈牙利命名法。      AvoidusingHungariannotationforpublicorprotectedmembers.    c)不要采用缩写(例如将number缩写为num)。      Donotabbreviatewords(suchasnuminsteadofnumber).10.总是使用C#预定义的类型,而不是使用Syst

5、em命名空间中的别名。例如:采用object不用Object,采用string不用String,采用int不用Int32。    AlwaysuseC#predefinedtypesratherthanthealiasesinthe Systemnamespace.    Forexample:     objectNOTObject    stringNOTString    int   NOTInt321.对于泛型,类型采用大写字母。当处理.NET类型Type时保留后缀Type。    Withgenerics, usecapitallettersfortypes.Res

6、ervesuffixingTypewhendealing withthe.NETtypeType.    //正确:    //Correct:    publicclassLinkedList    //避免使用:    //Avoid:     publicclassLinkedList 2.采用有意义的命名空间名,例如产品名称或公司名称。    Usemeaningfulnamespacessuchastheproductnameorthecompanyname3.避免使用类的全称,而是采用using语句。    Avoidfullyqualifiedtypenames

7、.Usetheusingstatementinstead. 4.避免在命名空间内使用using语句。    Avoidputtingausingstatementinsideanamespace.5.将所有framework命名空间名放在一起,后面放自定义或第三方的命名空间名。    Groupallframeworknamespacestogetherandputcustomorthirdpartynamespacesunderneath.    usingSystem;    usingSystem

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。