Func(Of TResult)()
是一个名为 的特定委托Func
。它是在System
命名空间内声明的类型,如下所示:
Public Delegate Function Func(Of TResult)() As TResult
它可能有不同的命名。例如:
Public Delegate Function MyParameterLessFunction(Of TResult)() As TResult
所以Func
实际上只是给代表的名字。由于F2
没有明确指定的类型,VB 不知道这个委托的名称。是它Func
还是MyParameterLessFunction
别的什么?相反,VB 只显示它的签名Function() As String
,因为F2
它也适合声明为的非泛型委托
Public Delegate Function AnonymousParameterLessStringFunction() As String
在您的评论中,您使用.ToString()
onF
和F2
。这将返回运行时类型,即分配给这些变量的值的类型。这些类型可以不同于这些变量的静态类型,即赋予变量名称的类型。让我们做一个小测试
Imports System.Reflection
Module FuncVsFunction
Dim F As Func(Of String) = Function() As String
Return "B"
End Function
Dim F2 = Function() As String
Return "B"
End Function
Sub Test()
Console.WriteLine($"Run-time type of F: {F.ToString()}")
Console.WriteLine($"Run-time type of F2: {F2.ToString()}")
Dim moduleType = GetType(FuncVsFunction)
Dim fields As IEnumerable(Of FieldInfo) = moduleType _
.GetMembers(BindingFlags.NonPublic Or BindingFlags.Static) _
.OfType(Of FieldInfo)
For Each member In fields
Console.WriteLine($"Static type of {member.Name}: {member.FieldType.Name}")
Next
Console.ReadKey()
End Sub
End Module
它显示
Run-time type of F: System.Func`1[System.String]
Run-time type of F2: VB$AnonymousDelegate_0`1[System.String]
Static type of F: System.Func`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]
Static type of F2: System.Object
请注意,F2
它只是简单地键入为Object
. 这是一个惊喜。我希望它是一个委托类型。
您还可以在调试器中看到这种差异。如果您在方法中设置断点Test
,然后将鼠标悬停在 and 的关键字Dim
上,则会显示一个弹出窗口F
F2
'Dim of F (static type)
Delegate Function System.Func(Of Out TResult)() As String
'Dim of F2 (static type)
Class System.Object
如果将鼠标悬停在变量名称上
'F (run-time type)
Method = {System.String _Lambda$__0-0()}
'F2 (run-time type)
<generated method>
因为F
您不仅可以获得类型信息,还可以获得生成的方法本身的名称。由于F2
是一个对象,Visual Studio 显然没有像F
.