Visual Basic TypeName 函数

定义和用法

TypeName 函数可指定变量的子类型。

TypeName 函数可返回的值:
描述
Byte字节值
Integer整型值
Long长整型值
Single单精度浮点值
Double双精度浮点值
Currency货币值
Decimal十进制值
Date日期或时间值
String字符串值
BooleanBoolean 值;True 或 False
Empty未初始化
Null无有效数据
<object type>实际对象类型名
Object一般对象
Unknown未知对象类型
Nothing还未引用对象实例的对象变量
Error错误
语法
  1. TypeName(varname)
参数描述
varname必需的。变量的名称。

实例

  1. Module Module1
  2. Sub Main()
  3. Dim x
  4. x="Hello World!"
  5. Console.WriteLine(TypeName(x))
  6. x=4
  7. Console.WriteLine(TypeName(x))
  8. x=4.675
  9. Console.WriteLine(TypeName(x))
  10. x=Nothing
  11. Console.WriteLine(TypeName(x))
  12. x=""
  13. Console.WriteLine(TypeName(x))
  14. x=True
  15. Console.WriteLine(TypeName(x))
  16. End Sub
  17. End Module

输出:

  1. String
  2. Integer
  3. Double
  4. Null
  5. Empty
  6. Boolean

分类导航