静态方法和实例方法对于委托的区别
Posted createwell
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了静态方法和实例方法对于委托的区别相关的知识,希望对你有一定的参考价值。
当一个类的实例的方法被赋给一个委托对象时,在上下文中不仅要维护这个方法,还要维护这个方法所在的实例。System.Delegate 类的Target属性指向的就是这个实例。举个例子:
class Program { static void Main(string[] args) { X x = new X(); ProgressReporter p = x.InstanceProgress; p(1); Console.WriteLine(p.Target == x); // True Console.WriteLine(p.Method); // Void InstanceProgress(Int32)
} static void WriteProgressToConsole(int percentComplete) { Console.WriteLine(percentComplete+"%"); } static void WriteProgressToFile(int percentComplete) { System.IO.File.AppendAllText("progress.txt", percentComplete + "%"); } } class X { public void InstanceProgress(int percentComplete) { // do something
} }
但对于静态方法,System.Delegate 类的Target属性是Null,所以将静态方法赋值给委托时性能更优。
以上是关于静态方法和实例方法对于委托的区别的主要内容,如果未能解决你的问题,请参考以下文章