Visual Basic IsNothing 函数
定义和用法
IsNothing
函数可返回指定的变量是否被初始化的布尔值。如果未被初始化,则返回 True ,否则返回 False 。
语法
IsNothing(expression)
参数 | 描述 |
---|---|
expression | 必需的。表达式(通常是一个变量名)。 |
实例
Module Module1
Sub Main()
Dim x
Console.WriteLine(IsNothing(x))
x=10
Console.WriteLine(IsNothing(x))
x=Nothing
Console.WriteLine(IsNothing(x))
x=""
Console.WriteLine(IsNothing(x))
End Sub
End Module
分别输出:
True
False
True
False