vb中的静态变量如何初始化
是否可以有 static b as integer = 3
vb 中是否存在全局的静态常量,如何使用?
[解决办法]
在过程或函数中:
Static a As Integer
if a=0 then a=3
'其它变化设置如:
a=a+1 '等等
--------------------------------------------
这样是有局限,要是a=a+1写为a=a-1呢?
如果数据a需要经过0的话可以再设置一个比如:
Static a As Integer,b as integer
if b=0 then a=3
'其它变化设置如:
a=a-1 '这样就可以经过0了,你需要什么就改变什么。任何事都有一定的成立条件。