以下是引用sarge_xp在2022-5-8 19:53:24的发言:
调试出错了
函数格式
1.
function 函数名[参数1,参数2,参数n]
*!* 函数主内容
endfunc
2.
function 函数名(参数1,参数2,参数n)
*!* 函数主内容
endfunc
3.
function 函数名
Parameters 参数1,参数2,参数n
*!* 函数主内容
endfunc
上面都是没返回值的,默认返回 .t.
4.
function 函数名
Parameters 参数1,参数2,参数n
Local c返回值
*!* 函数主内容
c返回值 = "xxxxx" && 根据需要,指定返回值
return c返回值
endfunc