当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript TypeName 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript TypeName 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 166 ::
收藏到网摘: n/a

The TypeName function returns the subtype of a specified variable.
TypeName 函数可以返回一个字符串,提供有关变量的 Variant 子类型信息。

The TypeName function can return one of the following values:
TypeName 函数返回值如下:

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

语法

TypeName(varname)

参数 描述
varname Required. A variable name
必选项的 varname 参数,可以是任何变量。

实例 1

dim x
x="Hello World!"
document.write(TypeName(x) & "<br />")
x=4
document.write(TypeName(x) & "<br />")
x=4.675
document.write(TypeName(x) & "<br />")
x=Null
document.write(TypeName(x) & "<br />")
x=Empty
document.write(TypeName(x) & "<br />")
x=True
document.write(TypeName(x))
输出:
String
Integer
Double
Null
Empty
Boolean

评论 (0) All

登陆 | 还没注册?