codecamp

VBScript VarType 函数

VBScript VarType 函数返回标识变体子类型的数值。


VBScript 参考手册完整的 VBScript 参考手册

VarType 函数返回指示指定变量的子类型的值。

VarType 函数返回下说面的值:

  • 0 = vbEmpty - 表示空(未初始化)
  • 1 = vbNull - 表示 Null(无有效数据)
  • 2 = vbInteger - 表示一个整数
  • 3 = vbLong - 表示一个长整数
  • 4 = vbSingle - 表示一个单精度浮点数
  • 5 = vbDouble - 表示一个双精度浮点数
  • 6 = vbCurrency - 表示货币
  • 7 = vbDate - 表示日期
  • 8 = vbString - 表示一个字符串
  • 9 = vbObject - 表示一个 automation 对象
  • 10 = vbError - 表示一个错误
  • 11 = vbBoolean - 表示一个布尔值
  • 12 = vbVariant - 表示 Variant(仅用于变量数组)
  • 13 = vbDataObject - 表示一个数据访问对象
  • 17 = vbByte - 表示一个字节
  • 8192 = vbArray - 表示一个数组

注意:假如变量是数组,则 VarType() 会返回 8192 + VarType(array_element)。举例:整数数组的 VarType() 会返回 8192 + 2 = 8194。

语法

VarType(varname)

参数 描述
varname 必需。变量的名称。

实例

实例

<script type="text/vbscript">

x="Hello World!"
document.write(VarType(x) & "<br />")
x=4
document.write(VarType(x) & "<br />")
x=4.675
document.write(VarType(x) & "<br />")
x=Null
document.write(VarType(x) & "<br />")
x=Empty
document.write(VarType(x) & "<br />")
x=True
document.write(VarType(x))

</script>

以上实例输出结果:

8
2
5
1
0
11

尝试一下 »

VBScript 参考手册完整的 VBScript 参考手册
VBScript LoadPicture 函数
VBScript IsObject 函数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

VB 函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }