Visual Basic 其他运算符

下表显示了 VB 支持的其他重要的运算符。

运算符描述实例
AddressOf返回过程的地址。
  1. AddHandler Button1.Click,
  2. AddressOf Button1_Click
Await它应用于异步方法或 lambda 表达式中的操作数,以暂停方法的执行,直到等待的任务完成
  1. Dim result As res = Await AsyncMethodThatReturnsResult()
  2. Await AsyncMethod()
GetType它返回指定类型的 Type 对象。Type 对象提供有关类型的信息,例如其属性、方法和事件。
  1. MsgBox(GetType(Integer).ToString())
Function ExpressionVB 9.0 新特性。它声明定义函数 lambda 表达式的参数和代码
  1. Dim add5 = Function(num As Integer) num + 5
  2. 'prints 10
  3. Console.WriteLine(add5(5))
If使用短路评估来有条件地
返回两个值。If 运算符可以用三个
参数或两个参数来调用。
  1. Dim num = 5
  2. Console.WriteLine(If(num >= 0, "Positive", "Negative"))

实例

以下实例演示了一些其他重要运算符:

  1. Module misc_operators
  2. Sub Main()
  3. Dim a As Integer = 21
  4. Console.WriteLine(GetType(Integer).ToString())
  5. Console.WriteLine(GetType(Double).ToString())
  6. Console.WriteLine(GetType(String).ToString())
  7. Dim multiplywith5 = Function(num As Integer) num * 5
  8. Console.WriteLine(multiplywith5(5))
  9. Console.WriteLine(If(a >= 0, "Positive", "Negative"))
  10. Console.ReadLine()
  11. End Sub
  12. End Module

结果如下:

  1. System.Int32
  2. System.Double
  3. System.String
  4. 25
  5. Positive

分类导航