查看: 454  |  回复: 0
  VB6 关于定义Dim b, c As Integer的b是什么类型?小数点又怎么办?
楼主
发表于 2023年12月26日 23:44

新建From1(窗体),新建Command1(按钮CommandButton),代码:

Private Sub Command1_Click()
    Dim a As Integer
    Dim b, c As Integer
    Dim d

    Debug.Print a, TypeName(a)
    Debug.Print b, TypeName(b)
    Debug.Print c, TypeName(c)
    
    d = 1.23
    Debug.Print d, TypeName(d) '分配成Double
        
    b = a
    Debug.Print "b=" & b, TypeName(b) 'Empty变Integer
    
    b = 1.93
    Debug.Print "b=" & b, TypeName(b) 'Empty变Double
    
    a = b
    Debug.Print "a=" & a, TypeName(a) 'a还是Integer,但四舍五入值
End Sub

运行结果:

 0            Integer
              Empty
 0            Integer
 1.23         Double
b=0           Integer
b=1.93        Double
a=2           Integer

可以看出b是空,所以建议b As Integer。

您需要登录后才可以回帖 登录 | 立即注册
【本版规则】请勿发表违反国家法律的内容,否则会被冻结账号和删贴。
用户名: 立即注册
密码:
2020-2024 MaNongKu.com