VB.Net - While... End While 循环



只要给定的条件为 True,它就会执行一系列语句。

此循环结构的语法为:

While condition
   [ statements ]
   [ Continue While ]
   [ statements ]
   [ Exit While ]
   [ statements ]
End While

这里,statement(s) 可以是单个语句或语句块。condition 可以是任何表达式,true 是逻辑真值。只要条件为真,循环就会迭代。

当条件变为 false 时,程序控制权将传递到循环后紧随其后的行。

流程图

while loop in VB.Net

这里,While 循环的关键点是循环可能永远不会运行。当条件被测试并且结果为 false 时,循环体将被跳过,并且将执行 while 循环后的第一个语句。

示例

Module loops
   Sub Main()
      Dim a As Integer = 10
      ' while loop execution '
      
      While a < 20
         Console.WriteLine("value of a: {0}", a)
         a = a + 1
      End While
      Console.ReadLine()
   End Sub
End Module

当以上代码编译并执行时,会产生以下结果:

value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 15
value of a: 16
value of a: 17
value of a: 18
value of a: 19
vb.net_loops.htm
广告