VBScript TypeName 函数

定义和用法

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

TypeName 函数可返回的值:

描述
Byte 字节值
Integer 整型值
Long 长整型值
Single 单精度浮点值
Double 双精度浮点值
Currency 货币值
Decimal 十进制值
Date 日期或时间值
String 字符串值
Boolean Boolean 值;True 或 False
Empty 未初始化
Null 无有效数据
<object type> 实际对象类型名
Object 一般对象
Unknown 未知对象类型
Nothing 还未引用对象实例的对象变量
Error 错误

语法

  1. TypeName(varname)
参数 描述
varname 必需的。变量的名称。

实例

  1. dim x
  2. x="Hello World!"
  3. document.write(TypeName(x))
  4. x=4
  5. document.write(TypeName(x))
  6. x=4.675
  7. document.write(TypeName(x))
  8. x=Null
  9. document.write(TypeName(x))
  10. x=Empty
  11. document.write(TypeName(x))
  12. x=True
  13. document.write(TypeName(x))

输出:

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