Visual Basic 嵌套 If 语句

在 VB 支持 If-Then-Else 语句,这意味着可以在一个 If ElseIf 语句中使用另一个 IfElseIf 语句。


语法

嵌套的 If 语句的语法如下:

  1. If( boolean_expression 1)Then
  2. '当 boolean_expression 1 为 true 时执行
  3. If(boolean_expression 2)Then
  4. ' boolean_expression 2 true 时执行
  5. End If
  6. End If

嵌套 ElseIf…Else 的方式与嵌套 If 语句的方式类似。


实例

  1. Module decisions
  2. Sub Main()
  3. 'local variable definition
  4. Dim a As Integer = 100
  5. Dim b As Integer = 200
  6. ' check the boolean condition
  7. If (a = 100) Then
  8. ' if condition is true then check the following
  9. If (b = 200) Then
  10. ' if condition is true then print the following
  11. Console.WriteLine("Value of a is 100 and b is 200")
  12. End If
  13. End If
  14. Console.WriteLine("Exact value of a is : {0}", a)
  15. Console.WriteLine("Exact value of b is : {0}", b)
  16. Console.ReadLine()
  17. End Sub
  18. End Module

结果如下:

  1. Value of a is 100 and b is 200
  2. Exact value of a is : 100
  3. Exact value of b is : 200

分类导航