1.编写目的
为了使团队中的每一位成员都形成统一的开发约定,特制定本规范文档,在今后的开发过程中,请严格按照此文档约定的规则进行编码。通过此规范,希望可以给各程序员之间起到沟通的桥梁的作用,并增强程序的可读性。
如在使用过程中,碰到本文档中没进行约定的规则,待商议后对该文档进行补充完善。
2.程序命名规范
基本约定
所有的命名名称都必须使用能直接体现具体含义的名字。
不能使用X,Y,Z,等无意义的名称进行定义,除循环变量除外。
所有的成员变量必须在所有成员方法前面声明,用一个换行把它和方法分开
如:
public class ClsLogin
{
TextBox txtUserName;//
TextBox txtPassWord;//
public Login()
{
}
}
类文件名的名称必须要能反应类的内容,最好是和类同名,一个文件只写一个类,文件和文件夹的名称也应该精确地说明它们的用途。
如:
类名:public class ClsLogin
正确编写:
public class ClsLogin
{
}
public class ClsLogin{
}
正确编写:
if (true)
错误编写:
if (true)
using System;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using MYNameSpace.NameSpace;
如:
public class ClsLogin
{
public Login()
{
}
{
}
}
public string GetTitle()
string StrTitle=lblTitle.Text;
StrTitle += StrTitle;
return StrTitle;
控件命名规范
以下控件为常用的控件命名规范,按英文字母进行升序排列。在此列表中未定义的控件,将后期补充完善。
控件类型
3D Panel
ADO Data
Animated button
Button
Check box
Combo box
Dropdown list box
Command button
Common dialog
Communications
Control (used within procedures when the specific type is unknown)
ctr
Data
Data-bound combo box
Data-bound grid
Data-bound list box
Data combo
Data grid
Data list
Data repeater
Date picker
Directory list box
Drive list box
File list box
Flat scroll bar
Form
Frame
Gauge
Graph
Grid
Hierarchical flexgrid
Horizontal scroll bar
Image
Image combo
ImageList
Label
Lightweight check box
Lightweight combo box
Lightweight command button
Lightweight frame
Lightweight horizontal scroll bar lwhsb
Lightweight list box
Lightweight option button
Lightweight text box
Lightweight vertical scroll bar
Line
List box
ListView
MAPI message
MAPI session
MCI
Menu
Month view
MS Chart
MS Flex grid
MS Tab
OLE container
Option button
Picture box
Picture clip
ProgressBar
Remote Data
RichTextBox
Shape
Slider
Spin
StatusBar
SysInfo
TabStrip
Text box
Timer
Toolbar
TreeView
UpDown
Vertical scroll bar
ADO.NET控件命名规范
类型
Connection con conNorthwind
Command cmd cmdReturnProducts
Parameter parm parmProductID
DataAdapter dad dadProducts
DataReader dtr dtrProducts
DataSet dst dstNorthWind
DataTable dtbl dtblProduct
DataRow drow drowRow98
DataColumn dcol dcolProductID
DataRelation drel drelMasterDetail
DataView dvw dvwFilteredProducts
自定义控件命名规范
自定义控件注册时,必须以“Custom“申明。
例如:
<%@ Register TagPrefix="Custom" Namespace="CustomComponents" %>
使用时:
<Custom:CreditCardForm runat="server" ID="customCreditCard” />
类型声明
在定义变量时,以前缀开头,再加上变量声明符,为了不与系统控件命名起冲突,类型命名时,前缀第一个字母大写。
类型
Sbyte Sby SbySex
Short
Int Int IntRowCounter
Long
Byte Byt BytPixelValue
Ushort Ushr UshrMoney
Uint Uint UintCount
Ulong Ulng UlngCount
类型
Flost Fot FotMoney
Double Dou DouMoney
Decimal Dec DecMoney
类型
Bool Boo BooIsPostBack
类型
Char Chr ChrSelectSex
类型
Object Obj ObjReturnValue
String Str StrName
常量
全部大写,单词之间以 “_” 分隔,例:USER_PASSWORD。
类的命名
类名必须以Cls前缀开头。
例如: public class ClsTextBox
{
}
抽象类定义
抽象类必须以AbsCls前缀开头。
例如:public abstract class AbsClsTextBox
{
}
密封类定义
密封类必须以SeaCls前缀开头。
例如:public sealed class SeaClsTextBox
方法定义
大小写形式,一般将其命名为动宾短语.
如:ShowDialog()
CreateFile()
虚方法定义
在方法定义的基础上,加上Vir前缀来表示虚方法。
如:public virtual string VirShowDialog ()
类的成员定义
参照类型声明;
结构定义
结构名必须以Srt前缀开头。
如: public struct SrtDimensions
结构成员定义
参照类型声明;
接口定义
接口名称前加I前缀开头。
interface ICompare
{
}
接口的方法和成员定义
参照类的方法和成员的定义规则。
自定义异常定义
自定义异常类型以Cls前缀开头,以Exception作为后缀命名。
例:public class ClsMyException : Exception
}
注释规范
1、注释必须使用中文及中文的标点符号。
2、每行注释的最大长度不能超过1024*800的宽度,且需要与代码对齐。
3、将注释与注释分隔符用一个空格分开。
4、编码的同时书写注释。
5、重要变量必须有注释。
6、变量注释和变量在同一行,所有注释必须对齐,与变量分开至少两个Tab键。
7、典型算法必须有注释。
8、在循环和逻辑分支的地方必须写上注释。
9、程序段或语句的注释在程序段或语句的上一行。
10、在代码交付之前,必须删掉临时的或无关的注释。
文件与函数的注释
1、文件和函数的头部都必须有概述注释信息。
2、文件和函数的概述注释应缩进1个空格。
3、文件概述注释信息必须包括以下内容:
a)文件名
b)属性
c)创建人
d)创建日期
4、函数概述注释信息必须包括以下内容:
a) 功能
b) 输入参数,标明意义和类型
c) 返回值,标明意义和类型
d) 作者
e) 日期
收集于互联网!!!