7

谁能告诉我为什么这段代码的行为方式如此?查看代码中嵌入的注释...

我在这里错过了一些非常明显的东西吗?

using System;
namespace ConsoleApplication3
{
    public class Program
    {
        static void Main(string[] args)
        {
            var c = new MyChild();
            c.X();
            Console.ReadLine();
        }
    }

    public class MyParent
    {
        public virtual void X()
        {
            Console.WriteLine("Executing MyParent");
        }
    }

    delegate void MyDelegate();

    public class MyChild : MyParent
    {
        public override void X()
        {
            Console.WriteLine("Executing MyChild");
            MyDelegate md = base.X;

            // The following two calls look like they should behave the same,
            //  but they behave differently!    

            // Why does Invoke() call the base class as expected here...
            md.Invoke();

            // ... and yet BeginInvoke() performs a recursive call within
            //  this child class and not call the base class?
            md.BeginInvoke(CallBack, null);
        }

        public void CallBack(IAsyncResult iAsyncResult)
        {
            return;
        }
    }
}
4

3 回答 3

5

我还没有答案,但我有一个我认为是更清晰的程序来证明奇怪:

using System;

delegate void MyDelegate();

public class Program
{
    static void Main(string[] args)
    {
        var c = new MyChild();
        c.DisplayOddity();
        Console.ReadLine();
    }
}

public class MyParent
{
    public virtual void X()
    {
        Console.WriteLine("Executing MyParent.X");
    }
}

public class MyChild : MyParent
{
    public void DisplayOddity()
    {
        MyDelegate md = base.X;

        Console.WriteLine("Calling Invoke()");
        md.Invoke();                // Executes base method... fair enough

        Console.WriteLine("Calling BeginInvoke()");
        md.BeginInvoke(null, null); // Executes overridden method!
    }

    public override void X()
    {
        Console.WriteLine("Executing MyChild.X");
    }
}

这不涉及任何递归调用。结果仍然是同样的奇怪:

Calling Invoke()
Executing MyParent.X
Calling BeginInvoke()
Executing MyChild.X

(如果您同意这是一个更简单的重现,请随时替换原始问题中的代码,我会将其从我的答案中删除:)

老实说,这对我来说似乎是一个错误。我会多挖一点。

于 2008-10-23T12:27:44.880 回答
1

当 Delegate.Invoke 直接调用委托方法时,Delegate.BeginInvoke 在内部使用 ThreadPool.QueueUserWorkItem()。md.Invoke() 只能调用 base.X,因为可以通过 base 关键字在派生类中访问基类的方法。由于线程池启动的委托在您的类外部,因此对其 X 方法的引用会受到重载,就像下面的代码一样。



    public class Program
    {
        static void Main(string[] args)
        {
            MyChild a = new MyChild();
            MyDelegate ma = new MyDelegate(a.X);

            MyParent b = new MyChild();
            MyDelegate mb = new MyDelegate(b.X);

            ma.Invoke();
            mb.Invoke();
            ma.BeginInvoke(CallBack, null);
            mb.BeginInvoke(CallBack, null); //all four calls call derived MyChild.X

            Console.ReadLine();
        }

        public static void CallBack(IAsyncResult iAsyncResult)
        {
            return;
        }
    }

调试到 .NET Framework 代码:http: //blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx

于 2008-11-01T01:13:30.827 回答
0

也许不是您正在寻找的答案,但这似乎有效:

ThreadPool.QueueUserWorkItem(x => md());

或者

new Thread(() => md()).Start();

但是你需要自己做会计:(

于 2008-10-23T14:53:50.700 回答