在 vb 中single和integer的区别

2024-12-27 20:58:01
推荐回答(3个)
回答1:

single 可以是带小数点的数,integer 只能是整数。

回答2:

single取值 -3.402E38---3.402E38
integer取值 -32768----32767
现在VB6.0以上建议你使用single或long类型。因为VB内部计算是用的4字节,如果用integer类型的话,VB会自动转换的。但肯定会用掉一点时间。

回答3:

int 是整型 如 1、2
single 是单精度型 如 1.000000000 2.00000000