Visual Basic Exit 语句

Exit 语句将终止循环过程,并执行循环体外的代码。

如果使用嵌套循环(即在一个循环内部有另外一个循环),则 Exit 语句将停止最内层循环的执行,并开始执行代码块之后的下一行代码。


语法

Exit 语句的语法是:


流程图


实例

  1. Module loops
  2. Sub Main()
  3. ' local variable definition
  4. Dim a As Integer = 10
  5. ' while loop execution '
  6. While (a < 20)
  7. Console.WriteLine("value of a: {0}", a)
  8. a = a + 1
  9. If (a > 15) Then
  10. 'terminate the loop using exit statement
  11. Exit While
  12. End If
  13. End While
  14. Console.ReadLine()
  15. End Sub
  16. 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: 15

分类导航