原文: http://blog.csdn.net/shimazhuge/article/details/8448773

---------------------------------------------------------

小dome

  1. #include <windows.h>
  2. #include <stdio.h>
  3. int main()
  4. {
  5. int n=7;
  6. number2:
  7. printf("hello world\n");
  8. if (n==7)
  9. {
  10. n=8;
  11. printf("n=7 start\n");
  12. goto number0;
  13. printf("n=7 end\n");
  14. }
  15. else
  16. {
  17. printf("n=8 start\n");
  18. goto number1;
  19. printf("n=8 end\n");
  20. }
  21. number0:
  22. printf("hi number0\n");
  23. goto number2;
  24. number1:
  25. printf("hi number1\n");
  26. number3:
  27. printf("number3\n");
  28. system("pause");
  29. return 0;
  30. }

输出结果

[C++基础]goto的用法-LMLPHP

结论分析及优缺点

goto 语句可用于跳出深嵌套循环
goto语句可以往后跳,也可以往前跳,且一直往前执行

goto只能在函数体内跳转,不能跳到函数体外的函数。即goto有局部作用域,需要在同一个栈内。

goto 语句标号由一个有效地标识符和符号";"组成,其中,标识符的命名规则与变量名称相同,即由字母、数字和下划线组成,且第一个字符必须是字母或下划线。执行goto语句后,程序就会跳转到语句标号处,并执行其后的语句。
通常goto语句与if条件语句连用,但是,goto语句在给程序带来灵活性的同时,也会使得使程序结构层次不清,而且不易读,所以要合理运用该语句。

05-28 06:22