Goto语句
UnigineScript已过时,将在以后的版本中删除。请考虑切换到C#/ C ++,因为这些API是首选。无法保证UnigineScipt中新引擎功能的可用性,因为当前的支持水平仅假设解决关键问题。
给解译器发出指令跳转到使用标签指定的代码处。跳转可从某个函数跳转到另一个函数,例如:
语法
someLabel:
// some_code;
goto someLabel;
部分
- someLabel 是语句标识符。
示例
int i = 0;
myLabel:
log.message("%d ",i);
i++;
if(i < 2) goto myLabel;
// 输出为: 0 1
可动态构建跳转时的标签。
int i = 0;
string prefix = "my";
string postfix = "Label";
myLabel:
log.message("%d ",i);
i++;
if(i < 2) goto prefix + postfix;
// 结果为: 0 1
最新更新:
2020-04-10
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)