VB问题:这道例题中dim a,b,c As Integer,这样写不是只声明了a的数据类型吗?
VB问题:这道例题中dim a,b,c As Integer,这样写不是只声明了a的数据类型吗?
日期:2015-01-06 14:22:30 人气:1
dim a,b,c As Integer,这样写不是只声明了a的数据类型吗?
不是的,这个实际是等于:
dim a,b
dim c as Integer
如果定义a的数据类型是这样:
dim a as Interger,b,c As Integer