任何人都可以告诉我为什么这段代码的行为方式如此?查看代码中嵌入的注释......
我错过了一些非常明显的东西吗?
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;
}
}
}
答案 0 :(得分: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
(如果您同意这是一个更简单的复制品,请随意更换原始问题中的代码,我将从我的答案中删除它:)
老实说,这对我来说似乎是个错误。我会再挖掘一下。
答案 1 :(得分: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
答案 2 :(得分:0)
也许不是你想要的答案,但这似乎有效:
ThreadPool.QueueUserWorkItem(x => md());
或
new Thread(() => md()).Start();
但你需要做自己的会计:(