VisualBasic辅导:VisualBasic编程的几个优良习惯和注意点
1." & "而不是"+"
在很多人的编程语言中,都是用"+"来连接字符串,这样很容易产生歧义。使用“&”连接字符串是一个好习惯。
不正确:
dim s message as string
s message = " 1 "+" 2 "
正确:
dim s message as string
s message = " 1 " & " 2 "[/br]注意:" & "后面跟有空 case
2。变量以大小写命名,语句以秩分散。源代码的维护
我们来比较下面两段代码:
难懂的代码:
Dim sName As String
Dim n turn As Integer
If n turn = 0 Then
If sName = " VB Eden " Then
Do While n turn < 4
n turn = n turn+1
Loop
End If
End If
易读的代码:?
0条评论