码迷,mamicode.com
首页 > 其他好文 > 详细

委托声明及调用

时间:2017-02-27 21:02:44      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:images   调用   turn   indicator   stat   决定   closed   with   执行   

//委托的声明
public delegate void NoReturnNoPara();
public delegate void NoReturnWithPara(int x,int y);
public delegate string NoPara();
public delegate DateTime WithPara(string name,int size);


NoReturnWithPara method = new NoReturnWithPara(ShowAdd);
//因为在静态类中,所以调用的也必须为静态类 //调用的也必须跟其声明时的返回类型和参数必须一致 NoReturnWithPara method1 = ShowAdd; // 可以直接将方法赋值给声明的委托 method.Invoke(4, 3);//委托的调用1 method(4, 5);//委托的调用2 method.BeginInvoke(6, 7, null, null);//异步调用 public static void ShowAdd(int x,int y) { Console.WriteLine("这里是ShowAdd x = {0} y = {1}",x,y); }
*************************************************************************
委托可用于解耦
例子,如遇见人打招呼时,分为美国人和中国人,说话的方式不一样
那么普通方法遍如下:
技术分享
public static void Greeting(string name,PeopleType type)//传递值,根据值来决定行为
{
if(type == PeopleType.Chinese)
{
Console.WriteLine("{0},早上好!", name);
}
else if(type == PeopleType.English)
{
Console.WriteLine("{0},Good Morning!", name);
}
else
{
throw new Exception("wrong PeopleType");
}
}
public enum PeopleType
{
Chinese,
English
}
View Code
而我们可以通过委托来传递第二个参数值,这样我们扩展时,只需在GreetingClass类中添加方法,并对应调用就行。
GreetingHandler handler = new GreetingHandler(GreetingClass.GreetingEnglish);
技术分享
public static void GreetingChinese(string name)//方法1的声明,即调用的参数
{
Console.WriteLine("{0},早上好!", name);
}
public static void GreetingEnglish(string name)//方法2的声明,即调用的参数
{
Console.WriteLine("{0},Good Morning!", name);
}

public static void Greeting(string name,GreetingHandler handler)//传个方法给我,我去执行
{
handler.Invoke(name);
}

public delegate void GreetingHandler(string name);//委托声明

GreetingHandler handler = new GreetingHandler(GreetingClass.GreetingEnglish);//调用,GreetingClass.GreetingEnglish,GreetingClass类下的GreetingEnglish方法
GreetingClass.Greeting("韩非子", handler);
View Code

 

委托声明及调用

标签:images   调用   turn   indicator   stat   决定   closed   with   执行   

原文地址:http://www.cnblogs.com/cn-blog-cn/p/6476128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!