gchaser 发表于 2008-12-26 01:17:00

qtp82 不支持函数的递归调用吗?已经解决,是支持的。

QTP8.2中,函数如下:
Function Runs(ParamCurrent,initcol,maxcol,stepcol)
       If ParamCurrent=1 Then '最内层,运行测试脚步
      RunTest()
      else'不是最内层,继续递归调用。
      Runs(ParamCurrent-1,initcol,maxcol,stepcol)
       End If
End Function


有如下错误:
cannot use parentheses when calling a sub

[ 本帖最后由 gchaser 于 2009-1-5 17:18 编辑 ]

dreamever 发表于 2008-12-26 09:26:04

在Runs(ParamCurrent-1,initcol,maxcol,stepcol)句的前面加一个call先试一下:
call Runs(ParamCurrent-1,initcol,maxcol,stepcol)
错误信息提示并不是递归调用失败,而是说在调用子过程时不能使用圆括号

gchaser 发表于 2008-12-26 21:17:17

多谢LS的兄弟,前面加call就可以了。刚使用QTP,语法还不够了解。
页: [1]
查看完整版本: qtp82 不支持函数的递归调用吗?已经解决,是支持的。