2

我读过关于延迟初始化的文章,但实际上我不明白如何初始化里面的对象。

这个函数返回一个Lazy类型LazyList的自定义实现

Public Function GetMethods(ByVal Assembly As String,
                           ByVal TypeName As String) 'As List(Of MethodDef) ' As MethodDef()

    Dim methods As LazyList(Of MethodDef) = Nothing

    Using ass As ModuleDefMD = ModuleDefMD.Load(Assembly)

        For Each t As TypeDef In ass.GetTypes

            If t.HasMethods AndAlso t.Name.String.Equals(TypeName, StringComparison.OrdinalIgnoreCase) Then

                methods = t.Methods

                '  MsgBox(t.Methods.GetType.Name) ' Result: LazyList'1
                Exit For

            End If

        Next t

        Return methods

    End Using

End Function

当我尝试读取 LazyList 的任何项目的属性时,我得到一个NullReferenceException异常,我想这是因为对象没有初始化?因为请注意,lazylist 项目计数为“2”,我完全确定我尝试读取的属性不能为空。

Imports dnlib.DotNet
Imports dnlib.DotNet.Emit
Imports dnlib.Utils

    Dim methods As LazyList(Of MethodDef) = GetMethods("C:\WindowsApplication.exe", "Main")

    MsgBox(methods.IsInitialized(0)) ' Result: False
    MsgBox(methods.Count) ' Result: 2

    For Each method As MethodDef In methods

        ' NullReferenceException exception here:
        MsgBox(method.Name)

        ' NullReferenceException exception here too (reading m.hasbody):
        If method.HasBody Then
            Dim sb As New System.Text.StringBuilder
            With sb
                .AppendLine(String.Format("Method Instructions: {0}", Environment.NewLine &
                                          String.Join(Environment.NewLine, method.Body.Instructions)))
            End With
            Debug.WriteLine(sb.ToString)
        End If

    Next method

如果我尝试重现我在上面的代码中所做的事情(尝试读取属性)但在函数内部,那么一切都按预期进行,没有任何 nullreference 异常......就像在这个例子中:

public function GetMethods (...)

' deleted code...

        If t.HasMethods AndAlso t.Name.String.Equals(TypeName, StringComparison.OrdinalIgnoreCase) Then

           methods = t.Methods
            For Each m In methods
                MsgBox(m.Name) ' no exceptions
                MsgBox(m.HasBody) ' no exceptions
            Next

       End If

' deleted code...

end function

PS:导入来自dnlib库。

更新:

我想用更多更好的例子来解释这个问题。

在继续解释之前有两件事:

我确保在所有示例中都TypeName存在参数并且找到了 iis,我确保函数返回的对象集合永远不会为空,它的 Collection.Count 为2,正如我在问题开头所解释的那样,所以这都是问题所在。


好吧,下一个函数返回一个对象列表,这些对象带有一个名为的属性,HasBody但该属性总是为空(抛出NullReference异常),当它不应该为空时,集合中包含的两个项目的值都应该是True .

Public Function GetMethods(ByVal Assembly As String,
                           ByVal TypeName As String) As List(Of MethodDef)

    Dim methods As List(Of MethodDef) = Nothing

    Using ass As ModuleDefMD = ModuleDefMD.Load(Assembly)

        For Each t As TypeDef In ass.GetTypes

            If t.HasMethods AndAlso t.Name.String.Equals(TypeName, StringComparison.OrdinalIgnoreCase) Then

                methods = t.Methods.ToList
                Exit For

            End If

        Next t

        Return methods

    End Using

End Function

另一方面,如果我在函数中执行了一个荒谬的修改(请参阅与tmp对象相关的更改),该函数返回一个对象列表,其中HasBody属性已初始化,不为空,并且返回列表中包含的 2 项HasBody值为True的属性。

Public Function GetMethods(ByVal Assembly As String,
                           ByVal TypeName As String) As List(Of MethodDef)

    Dim methods As List(Of MethodDef) = Nothing

    Dim tmp As Object

    Using ass As ModuleDefMD = ModuleDefMD.Load(Assembly)

        For Each t As TypeDef In ass.GetTypes

            If t.HasMethods AndAlso t.Name.String.Equals(TypeName, StringComparison.OrdinalIgnoreCase) Then

                methods = t.Methods.ToList
                For Each m In methods
                    tmp = m.HasBody
                Next

                Exit For

            End If

        Next t

        Return methods

    End Using

End Function

那么问题出在哪里以及如何解决?,也许这是这种情况的临时解决方案,但methoddef返回函数的对象包含很多属性,我需要访问比HasBody未来更多的属性,所以我真的可以不要将每个属性“分配”给tmp函数中的对象,以一种丑陋的方式解决这个问题......

在这两种情况下,用于循环返回的 List 的代码是这样的:

注意:请记住,使用第一个函数我无法解析method.hasbody属性和method.body.instructions属性,都抛出 NullReference 异常。

但是使用修改后的函数,只有在返回列表之前将其method.hasbody分配给函数内部的变量时,我才能解析该属性,并且如果执行相同操作,则该属性也是如此。tmpmethod.body.instructions

    Dim methods As List(Of MethodDef) =
        GetMethods("C:\WindowsApplication.exe", "Main")

    For Each method As MethodDef In methods

        MsgBox(method.Name)

        If method.HasBody Then
            Dim sb As New System.Text.StringBuilder
            With sb
                .AppendLine(String.Format("Method Instructions: {0}", Environment.NewLine &
                                          String.Join(Environment.NewLine, method.Body.Instructions)))
            End With
            MsgBox(sb.ToString)
        End If

    Next method
4

1 回答 1

1

我认为这是第一个问题:

Public Function GetMethods(ByVal Assembly As String,
                       ByVal TypeName As String) 'As List(Of MethodDef) 

指定返回类型,它可能会起作用:As LazyList(Of MethodDef)

TypeName当在大会中找不到时也会发生这种情况。在这种情况下,您的 LazyList 仍将是 Nothing 并导致 NRE。你应该检查返回 - 我认为它与 LazyList 无关(还):

Dim methods As LazyList(Of MethodDef) = _
     GetMethods("C:\WindowsApplication.exe", "Main")

If methods IsNot Nothing Then
  ' iterate

测试台:

Dim methods As LazyList(Of MethodDef) = Nothing

在按钮中单击:

methods = Test_Handler("Test2")

For Each meth As MethodDef In methods
    If meth.HasBody Then
        Console.WriteLine("{0} has a body", meth.Name)
    Else
        Console.WriteLine("{0} has NO body", meth.Name)
    End If
Next

测试处理程序本质上就是你所拥有的 &= As LazyList(Of MethodDef)。输出:

.ctor has a body
testfunction has a body
Foo has a body
Bar has a body
ziggy has a body

接下来可能会出现更大的问题:......我不明白如何初始化里面的对象

您存储在 LazyList 中的是这些MethodDef对象——它们已经被实例化了。TypeDef.Methods实际上返回 IList MethodDef,涉及 LazyList 的唯一原因是因为您的代码以这种方式存储它们。

如果您打算调用他们描述的方法,我很确定您不能以 aMethodDef作为起点来执行此操作。它们只是描述方法特征的元数据。您已经知道TypeName它们来自,因此要调用其中一种方法,您必须拥有该类型的实例。

它不知道您要做什么,但是对于元数据的集合似乎不需要 LazyList。


对象浏览器中的定义MethodsIList,源代码还显示:

public ThreadSafe.IList<MethodDef> Methods

在内部,使用一个 LazyList。这可能是因为它可以创建和保存一个类型的方法列表,但不会为它们加载元数据,除非并且直到它实际上被问到有关方法列表的一些信息。 然后它们被初始化。

这同样适用:

Private Function Test_Handler(typeName As String) As List(Of MethodDef)

    Dim modDef As ModuleDefMD = ModuleDefMD.Load("C:\Temp\ConsoleApplication1.exe")
    Dim methods As New List(Of MethodDef)

    For Each t As TypeDef In modDef.GetTypes

        ' stupid way to drill, but will work for demo purposes
        If t.Name.Equals(typeName) Then

            'methods = t.Methods
            methods.AddRange(t.Methods.ToArray)

            Exit For
        End If

    Next

    Return methods

End Function

你可能变得太聪明了,试着做:Return t.Methods然后得到一个关于 LastList 转换为 List 的转换错误。但是,您返回的方法对象集已经实例化,因此如果您获得 NRE,可能会出现其他问题。


这解决了问题:

Using ass As ModuleDefMD = ModuleDefMD.Load(Assembly)

方法定义列表在内部是一个 LazyList,并且在调用它们的属性或方法之前不会被实例化。为了实例化它们,它们(显然)需要访问创建它们的东西。所以参考一些无害的东西,这样你就可以处理掉ModuleDefMD

Dim methods As New List(Of MethodDef)
Dim b As Boolean

Using modDef As ModuleDefMD = ModuleDefMD.Load("C:\Temp\ConsoleApplication1.exe")
    For Each t As TypeDef In modDef.GetTypes

        ' stupid way to drill, but will work for demo purposes
        If t.Name.Equals(typeName) Then

            For Each m As MethodDef In t.Methods
                b = m.HasBody

                methods.Add(m)

            Next
            Exit For
        End If

    Next
End Using
Return methods

这或多或少是您的 Tmp 对象所做的。你称它为丑陋,但由于源是一个 LazyList,它要么就是那个,要么用modDef引用来解决问题。

于 2014-08-02T22:49:19.067 回答