当前位置: 代码迷 >> vbScript >> VBscript中怎么实现&&
  详细解决方案

VBscript中怎么实现&&

热度:9810   发布时间:2013-02-26 00:00:00.0
VBscript中如何实现&&
vbscript 不支持&&,
有办法实现&&的功能吗?


------解决方案--------------------------------------------------------
探讨
我没有表达清楚。我是希望VBScript中能得到c#中&&的效果,即function A 返回false后就不再执行function B

VBScript codeif a()and b()Then
wscript.echo"two function return true"endiffunction a()
wscript.echo"a is running"
a=falseend functionfunction b()
wscript.echo"b is running"
b=falseend function
  相关解决方案