Visual Basic GoTo 语句

GoTo 语句无条件地将程序执行跳转到过程中的指定行(标签处)。

GoTo 语句的语法是:

  1. GoTo label

流程图


实例

  1. Module loops
  2. Sub Main()
  3. ' local variable definition '
  4. Dim a As Integer = 10
  5. Line1:
  6. Do
  7. If (a = 15) Then
  8. ' skip the iteration '
  9. a = a + 1
  10. GoTo Line1
  11. End If
  12. Console.WriteLine("value of a: {0}", a)
  13. a = a + 1
  14. Loop While (a < 20)
  15. Console.ReadLine()
  16. End Sub
  17. End Module

结果如下:

  1. value of a: 10
  2. value of a: 11
  3. value of a: 12
  4. value of a: 13
  5. value of a: 14
  6. value of a: 16
  7. value of a: 17
  8. value of a: 18
  9. value of a: 19

分类导航