作用:可以无条件跳转语句,类似计算机组成原理mips指令集中的jump直接跳转指令(汇编语言)。
语法:goto标记;
解释:如果标记的名称存在,执行到goto语句时,会跳转到标记的位置
#include<bits/stdc++.h>
using namespace std;
int main(){
cout<<"1,xxxx"<<endl;
cout<<"2,xxxx"<<endl;
for(int i=0;i<10;i++){
cout<<"4,xxxx"<<endl;
goto flag;
}
flag:
cout<<"5,xxxx"<<endl;
cout<<"6,xxxx"<<endl;
}
从上述代码中可以看出,就算goto语句在循环结构中,也是可以直接跳出循环的