.net委托

今天要学的是委托

委托的基本形式

直接上代码

 public delegate int AddDelegate(int x,int y);
class Program
{
static void Main(string[] args)
{
int x=;int y=;
AddDelegate addDelegate = new AddDelegate(Add); int result = addDelegate(x, y);
Console.WriteLine("运行结果是:" + result);
Console.ReadLine();
} static int Add(int x, int y)
{
return x + y;
}
}

上面是最原始的委托。但是有人开始说了,我的委托可能只是用一次,还要这么罗嗦的代码,累死人....;还有人会说,实例化委托会有资源消耗,我不想实例化。于是就有了委托的第二种样式和第三种样式

匿名委托

去掉了静态函数

 public delegate int AddDelegate(int x,int y);
class Program
{
static void Main(string[] args)
{
int x=;int y=; AddDelegate addDelegate1 = new AddDelegate( delegate(int a,int b){
return a + b;
});
int result = addDelegate1(x, y);
Console.WriteLine("运行结果是:" + result);
Console.ReadLine();
}
}

或者lamdba的写法

 public delegate int AddDelegate(int x,int y);
class Program
{
static void Main(string[] args)
{
int x=;int y=; AddDelegate addDelegate2 = (int a, int b) =>
{
return a + b;
};
int result = addDelegate2(x, y);
Console.WriteLine("运行结果是:" + result);
Console.ReadLine();
}
}

随着.net版本的演变,出现了Func和Action,它们其实是.net内部封装好的委托,方便大家使用,详细咱这里就不再介绍了。

上一篇:JavaScript正则表达式模式匹配(2)——分组模式匹配


下一篇:ubuntu16.04编译安装mysql-boost-5.7.21并编译成php扩展测试与使用