欢迎来到天天文库
浏览记录
ID:37926705
大小:89.50 KB
页数:14页
时间:2019-06-02
《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
此文档下载收益归作者所有