文章介绍了委托的根基常识,接下来就进一步研究一下委托。
委托类型
其实,刚开始感受委托类型是一个对照难理解的观点,怎么也不感受下面的”AssembleIphoneHandler”是一个类型。
代码如下:
public delegate void AssembleIphoneHandler();
凭据正常的情况,,如果我们要创建一个委托类型应该是:
代码如下:
public class AssembleIphoneHandler : System.MulticastDelegate
{
}
但是,这种写法是编译不过的,会提示不能从”System.MulticastDelegate”派生子类。
其实,这里是编译器为我们做了一个转换,当我们使用delegate关键字声明一个委托类型的时候,编译器就会凭据上面代码片段中的方法为我们创建一个委托类型。
知道了这些对象,对付委托类型的理解就对照容易了,通过delegate声明的委托类型就是一个从”System.MulticastDelegate”派生出来的子类。
成立委托链
下面我们通过一个例子来看看委托链的成立,以及挪用列表的变革,基于前面一篇文章中的例子进行一些改削。
代码如下:
class Program
{
static void Main(string[] args)
{
Apple apple = new Apple();
Foxconn foxconn = new Foxconn();
Apple.AssembleIphoneHandler d1, d2, d3, d4 = null;
d1 = new Apple.AssembleIphoneHandler(foxconn.AssembleIphone);
d2 = new Apple.AssembleIphoneHandler(foxconn.PackIphone);
d3 = new Apple.AssembleIphoneHandler(foxconn.ShipIphone);
d4 += d1;
d4 += d2;
d4 += d3;
d4();
Console.Read();
}
}