c# – 为什么这样工作?执行方法从IL没有实例

前端之家收集整理的这篇文章主要介绍了c# – 为什么这样工作?执行方法从IL没有实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在看着 What’s the strangest corner case you’ve seen in C# or .NET?,这段代码让我想了一下:
public class Program
{
    delegate void HelloDelegate(Strange bar);

    [STAThread()]
    public static void Main(string[] args)
    {
        Strange bar = null;
        var hello = new DynamicMethod("ThisIsNull",typeof(void),new[] { typeof(Strange) },typeof(Strange).Module);
        ILGenerator il = hello.GetILGenerator(256);
        il.Emit(OpCodes.Ldarg_0);
        var foo = typeof(Strange).GetMethod("Foo");
        il.Emit(OpCodes.Call,foo);
        il.Emit(OpCodes.Ret);
        var print = (HelloDelegate)hello.CreateDelegate(typeof(HelloDelegate));
        print(bar);
        Console.ReadLine();
    }

    internal sealed class Strange
    {
       public void Foo()
       {
           Console.WriteLine(this == null);
       }
    }
}

我明白代码的作用,但我不明白为什么它的作品.不是那样做null.Foo()?它的作用就好像Foo()是静态的,而这正在被调用:Strange.Foo();.

请你告诉我我失踪了什么

解决方法

这是作为正常参数实现的;你的代码只是作为这个参数传递null.

通常会抛出NullReferenceException的唯一原因是方法通常使用CallVirt指令调用,该指令对此参数执行vtable查找,如果为空,则抛出.

如果您使用调用,即使该方法为空,该方法也将执行得很好,尽管该方法本身可能会在以后抛出.

原文链接:https://www.f2er.com/csharp/92467.html

猜你在找的C#相关文章