c++ goto的使用

c++ goto 语句的使用

1.定义一个类似标签的东西lable

2.使用goto关键字,跳转到lable, goto lable

 1 #include <iostream>
 2 #include <string>
 3 #include <stdlib.h>
 4 #include <stdio.h>
 5 
 6 
 7 #include "header3.h"
 8 
 9 using namespace std;
10 void swap(int&, int&);
11 //void swap(int, int);
12 
13 int main(){
14     bool flag = true;
15     
16 lable:
17     cout<<"hello world!"<<endl;
18 
19     if(flag){
20         flag = !flag;
21         goto lable;
22     }
23     
24 
25     return 0;
26 }

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。