Visual Basic 其他运算符
下表显示了 VB 支持的其他重要的运算符。
运算符 | 描述 | 实例 |
---|---|---|
AddressOf | 返回过程的地址。 |
|
Await | 它应用于异步方法或 lambda 表达式中的操作数,以暂停方法的执行,直到等待的任务完成 |
|
GetType | 它返回指定类型的 Type 对象。Type 对象提供有关类型的信息,例如其属性、方法和事件。 |
|
Function Expression | VB 9.0 新特性。它声明定义函数 lambda 表达式的参数和代码 |
|
If | 使用短路评估来有条件地 返回两个值。If 运算符可以用三个 参数或两个参数来调用。 |
|
实例
以下实例演示了一些其他重要运算符:
Module misc_operators
Sub Main()
Dim a As Integer = 21
Console.WriteLine(GetType(Integer).ToString())
Console.WriteLine(GetType(Double).ToString())
Console.WriteLine(GetType(String).ToString())
Dim multiplywith5 = Function(num As Integer) num * 5
Console.WriteLine(multiplywith5(5))
Console.WriteLine(If(a >= 0, "Positive", "Negative"))
Console.ReadLine()
End Sub
End Module
结果如下:
System.Int32
System.Double
System.String
25
Positive