求助:nextlast:
今天在PB中看到这样的写法:
nextlast:
请问这是什么意思啊?
谢谢。
[最优解释]
Example 1 This GOTO statement skips over the Taxable=FALSE line:
Goto NextStep
Taxable=FALSE //This statement never executes.
NextStep:
Rate=Count/Count4
[其他解释]
It is label, same as SQL Server's label.
[其他解释]
与goto配合使用,有goto就要有相应的 label:
有 label: 就要有 goto
如:
int i = 0
if isnull(a) then
goto label
end if
i ++
label:
i ++
messagebox("", i)