Visual Basic IsNothing 函数

定义和用法

IsNothing 函数可返回指定的变量是否被初始化的布尔值。如果未被初始化,则返回 True ,否则返回 False

语法
  1. IsNothing(expression)
参数描述
expression必需的。表达式(通常是一个变量名)。

实例

  1. Module Module1
  2. Sub Main()
  3. Dim x
  4. Console.WriteLine(IsNothing(x))
  5. x=10
  6. Console.WriteLine(IsNothing(x))
  7. x=Nothing
  8. Console.WriteLine(IsNothing(x))
  9. x=""
  10. Console.WriteLine(IsNothing(x))
  11. End Sub
  12. End Module

分别输出:

  1. True
  2. False
  3. True
  4. False

分类导航