Goto语句
给解译器发出指令跳转到使用标签指定的代码处。跳转可从某个函数跳转到另一个函数,例如:
语法
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
最新更新: 2018-06-04
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)