1. 基本了解

1.1 委托简述

官方文档

委托是一种引用类型,表示对具有特定参数列表和返回类型的方法的引用,用于将方法作为参数传递给其他方法,可将任何可访问类或结构中与委托类型匹配的任何方法分配给委托

其它说明

委托在IL中就是一个类(本质上是类),继承与System.MulticastDelegate类(特殊类)

委托是一个类,它定义了方法的类型,使得可以将方法当作另一个方法的参数来进行传递

委托类型

自定义委托:Delegate

系统内置委托:ActionFunc

委托声明

可以声明在类的外部也可以在内部,在IL中,无论在内外都会编译到类的内部

委托在实例化时,需要传入一个方法,此方法返回值,参数(类型,个数,顺序)与委托一致

1.2 使用步骤

  • 声明一个委托
  • 委托的实例化,传入指定方法
  • 调用执行

2. Delegate委托

Delegate:常用到的一种声明,且至少0个参数,至多32个参数,可以无返回值,也可以指定返回值类型

2.1 示例一:无参,无返回值

// 1.声明委托
public delegate void NoReturnNoPare(); // 2.准备委托执行方法
public void Show()
{
Console.WriteLine("无参,无返回值");
} // 3.实例,调用委托
public void Start()
{
NoReturnNoPare d1 = new NoReturnNoPare(this.Show);
d1.Invoke();
}

2.2 示例二:有参,无返回值

// 1.声明委托
public delegate void NoReturnWithPare(int x, int y); // 2.准备委托执行方法
public void Show(int x,int y)
{
Console.WriteLine("有参,无返回值");
} // 3.实例,调用委托
public void Start()
{
NoReturnWithPare d2 = new NoReturnWithPare(this.Show);
d2.Invoke(1,2);
}

2.3 示例三:有参,有返回值

// 1.声明委托
public delegate int WithReturnWithPare(int x, int y); // 2.准备委托执行方法
public int Show(int x, int y)
{
return x + y;
} // 3.实例,调用委托
public void Start()
{
WithReturnWithPare d2 = new WithReturnWithPare(this.Show);
// 返回值类型,编译器会自动推断
int IResult = d2.Invoke(1, 2);
Console.WriteLine(IResult);
}

3. Action委托

Action是系统内置委托(无需声明),是无返回值的泛型委托,至少0个参数,至多16个参数,且无返回值

3.1 示例一:无参,无返回值

// 1.定义执行方法
public void Show()
{
Console.WriteLine("无参,无返回值");
} // 2.调用执行
public void Start()
{
Action action = new Action(this.Show);
// Action<int, int> action = this.Show;
action.Invoke();
}

3.2 示例二:有参,无返回值

// 1.定义执行方法
public void Show(int x, int y)
{
Console.WriteLine("有参,无返回值");
} // 2.调用执行
public void Start()
{
Action<int, int> action = new Action<int,int>(this.Show);
// Action<int, int> action = this.Show;
action.Invoke(1,2);
}

3.3 示例三:使用 lambda 表达式

Action<int, int> action = (x, y) => { };
action.Invoke(1, 2);

3.4 示例四:将委托作为方法参数

public void Start()
{
Action<int> action = (x) => { Console.WriteLine(x); };
Show(action, 2);
} public void Show<T>(Action<T> ac, T inputParam)
{
ac(inputParam);
}

4. Func委托

Func是有返回值的泛型委托,至少0个参数,至多16个参数,根据返回值泛型返回;必须有返回值,不可void,且最后一位泛型类型,为返回值类型

4.1 示例一:无参,有返回值

public void Start()
{
Func<string> func = new Func<string>(this.Show);
string IResult = func.Invoke();
Console.WriteLine(IResult);
} public string Show()
{
return "libai";
}

4.2 示例二:有参,有返回值

public void Start()
{
Func<int, string> func = new Func<int, string>(this.Show);
string IResult = func.Invoke(1);
Console.WriteLine(IResult);
} public string Show(int i)
{
return "libai\t" + i;
}

4.3 示例三:使用lambda表达式

public void Start()
{
Func<int> func1 = () => { return 1; };
int IResultInt = func1.Invoke();
Console.WriteLine(IResultInt); Func<int, string> func2 = (i) => { return i.ToString(); };
string IResult = func2.Invoke(1);
Console.WriteLine(IResult);
}

4.4 示例四:将委托作为方法参数

例子一:简化

public void Start()
{
Func<int, int, int> func = (x, y) => { return x + y; };
int IResultInt = Test(func, 1, 2);
Console.WriteLine(IResultInt);
} public int Test<T1, T2>(Func<T1, T2, int> func, T1 a, T2 b)
{
return func(a, b);
}

示例二:一般写法

static void Main(string[] args)
{
Console.WriteLine(Test<int,int>(Fun,100,200));
Console.ReadKey();
}
public static int Test<T1, T2>(Func<T1, T2, int> func, T1 a, T2 b)
{
return func(a, b);
}
private static int Fun(int a, int b)
{
return a + b;
}

5. 链式委托

5.1 文档说明

官方文档

委托对象的一个有用属性在于可通过使用 + 运算符将多个对象分配到一个委托实例,多播委托包含已分配委托列表,此多播委托被调用时会依次调用列表中的委托;仅可合并类型相同的委托

  • - 运算符可用于从多播委托中删除组件委托,顺序,从下至上(委托列表中没有移除的委托时不会报错)
  • + 运算符可用于将委托组件添加到委托列表,顺序,从上而下

在执行有返回值的委托链时,只能得到最后一个委托的结果

其它文档

委托链(多播委托)是一个由委托组成的链表,而不是一个新的东西,所有的自定义委托都直接集成自System.MulticastDelegate类型,这个类型即是为委托链而设计的

链式委托是指一个委托的链表,而不是指另外一类特殊的委托,当执行链上的一个方法时,后续委托将会被依此执行

System.MuticastDelegate定义了对链式委托的支持,在System.Delegate的基础上,增加了一个指向后续委托的指针,这样就实现了一个简单的链表结构

5.2 示例一:统一执行

public void Start()
{
NoReturnWithPare noReturnWith = new NoReturnWithPare(this.Fun1);
noReturnWith += this.Fun2;
noReturnWith += this.Fun1;
noReturnWith.Invoke(1, 2);
} public void Fun1(int x, int y)
{
Console.WriteLine("Fun1:\t" + x + y);
} public void Fun2(int x, int y)
{
Console.WriteLine("Fun2:\t" + x + y);
}

5.3 示例二:逐个执行

注意:逐个执行时,单项不能用var声明,必须使用委托的具体类型

逐个指定,返回值,问题,b委托使用a的返回值?

public void Start()
{
NoReturnWithPare noReturnWith = new NoReturnWithPare(this.Fun1);
noReturnWith += this.Fun2;
noReturnWith += this.Fun1;
foreach (NoReturnWithPare item in noReturnWith.GetInvocationList())
{
item.Invoke(1,2);
}
} public void Fun1(int x, int y)
{
Console.WriteLine("Fun1:\t" + x + y);
} public void Fun2(int x, int y)
{
Console.WriteLine("Fun2:\t" + x + y);
}

5.4 示例三:责任链模式

典型案例:用代码模拟,猫叫了,狗叫了,然后老鼠跑了

普通实现

using System;

namespace de2
{
class Program
{
static void Main(string[] args)
{
Cat cat = new Cat();
cat.Miao();
}
} public class Cat
{
public void Miao()
{
Console.WriteLine("猫叫了");
new Dog().Wang();
new Mouse().Run();
}
}
public class Dog
{
public void Wang()
{
Console.WriteLine("狗叫了");
}
}
public class Mouse
{
public void Run()
{
Console.WriteLine("老鼠跑了");
}
}
}

使用责任链模式实现(委托)

using System;

namespace de2
{
class Program
{
static void Main(string[] args)
{
Cat cat = new Cat(); cat.miaoAction += new Dog().Wang;
cat.miaoAction += new Mouse().Run; cat.MiaoDelegate();
}
} public class Cat
{
public void Miao()
{
Console.WriteLine("猫叫了");
} public Action miaoAction;
public void MiaoDelegate()
{
this.Miao();
this.miaoAction.Invoke();
}
}
public class Dog
{
public void Wang()
{
Console.WriteLine("狗叫了");
}
}
public class Mouse
{
public void Run()
{
Console.WriteLine("老鼠跑了");
}
}
}

使用责任链模式实现(抽象方法)

using System;
using System.Collections.Generic; namespace de2
{
class Program
{
static void Main(string[] args)
{
Cat cat = new Cat();
cat.Add(new Dog());
cat.Add(new Mouse());
cat.AbsServer();
}
} public interface IAbsServer
{
void Do();
} public class Cat : IAbsServer
{
private List<IAbsServer> list = new List<IAbsServer>();
public void Add(IAbsServer absServer)
{
list.Add(absServer);
} public void AbsServer()
{
this.Do();
foreach (var item in list)
{
item.Do();
}
} public void Miao()
{
Console.WriteLine("猫叫了");
} public void Do()
{
this.Miao();
}
}
public class Dog : IAbsServer
{
public void Do()
{
this.Wang();
} public void Wang()
{
Console.WriteLine("狗叫了");
}
}
public class Mouse : IAbsServer
{
public void Do()
{
this.Run();
} public void Run()
{
Console.WriteLine("老鼠跑了");
}
}
}

使用责任链模式实现(事件)

using System;

namespace de2
{
class Program
{
static void Main(string[] args)
{
Cat cat = new Cat(); cat.miaoEvent += new Dog().Wang;
cat.miaoEvent += new Mouse().Run; cat.MiaoEvent();
}
} public class Cat
{
public void Miao()
{
Console.WriteLine("猫叫了");
} /// <summary>
/// 事件,只能在事件所在类(本身类,子类不可)的内部 Invoke 执行
/// </summary>
public event Action miaoEvent;
public void MiaoEvent()
{
this.Miao();
this.miaoEvent.Invoke();
}
}
public class Dog
{
public void Wang()
{
Console.WriteLine("狗叫了");
}
}
public class Mouse
{
public void Run()
{
Console.WriteLine("老鼠跑了");
}
}
}

5.5 补充说明

链式委托的执行顺序是:按照委托链上的顺醋从当前委托开始依次往后执行,如果有需要可以使用GetInvocationList()方法来获得委托链上所有需要执行的委托,并且按照任何希望的顺序去逐个执行(Invoke

委托可以是带有返回值的方法,但多余一个带返回值的方法被添加到委托链中时,程序员需要手动地调用委托链上的每个方法,否则委托使用者智能得到委托链上最后一个被执行的方法的返回值

委托的应用场合通常是任务的执行者把细节工作进行再分配,执行者确切地知道什么工作将要被执行,但却把执行细节委托给其他组件、方法或者程序集

6. 委托事件

事件(Event):是委托的实例,在定义委托是加了enevt 关键字

enevt 关键字,限定权限,只能在事件所在类中调用事件

6.1 示例一:自定义标准事件

模拟:用户订阅手机降价事件,当降价时用于购买手机

using System;

namespace de3
{
class Program
{
static void Main(string[] args)
{
Phone phone = new Phone
{
name = "vivo",
Price = 1999
};
phone.DiscountEventHandler += new User() { name = "李白" }.Buy; phone.Price -= 400;
}
} // 事件额外信息
public class EventPara
{
public int oValue { get; set; }
public int nValue { get; set; }
} public delegate void CostomEventHandler(object sender, EventPara para); // 手机,发布者,发布事件并且在满足条件情况下执行事件
public class Phone
{
public string name { get; set; }
private int price;
public int Price
{
set
{
if (value < this.price)
{
this.DiscountEventHandler?.Invoke(this, new EventPara
{
oValue = this.price,
nValue = value
});
}
this.price = value;
}
get { return this.price; }
} public event CostomEventHandler DiscountEventHandler;
} // 订户,关注事件,事件发生后执行动作
public class User
{
public string name { get; set; }
// 买手机
public void Buy(object sender, EventPara para)
{
Phone phone = (Phone)sender;
Console.WriteLine($"手机:{phone.name}\t打折前:{para.oValue}\t打折后:{para.nValue}");
Console.WriteLine("购买手机!");
}
}
}

标注:委托事件实际应用还不太熟,示例做参考即可

7. 扩展补充

7.1 委托的内部结构

IL语言的无参无返回值的委托结构(编译后)

.class nested public auto ansi sealed NoReturnNoPare
extends [mscorlib]System.MulticastDelegate
{
// Methods
.method public hidebysig specialname rtspecialname
instance void .ctor (
object 'object',
native int 'method'
) runtime managed
{
} // end of method NoReturnNoPare::.ctor .method public hidebysig newslot virtual
instance void Invoke () runtime managed
{
} // end of method NoReturnNoPare::Invoke .method public hidebysig newslot virtual
instance class [mscorlib]System.IAsyncResult BeginInvoke (
class [mscorlib]System.AsyncCallback callback,
object 'object'
) runtime managed
{
} // end of method NoReturnNoPare::BeginInvoke .method public hidebysig newslot virtual
instance void EndInvoke (
class [mscorlib]System.IAsyncResult result
) runtime managed
{
} // end of method NoReturnNoPare::EndInvoke } // end of class NoReturnNoPare

7.2 调用委托

使用委托实例调用,参数写在括号中

NoReturnNoPare d1 = new NoReturnNoPare(this.Show);
d1();

使用实例的Invoke()方法调用,参数写在方法中

NoReturnNoPare d1 = new NoReturnNoPare(this.Show);
d1.Invoke();

7.3 Predicate<T>委托

说明:不常用,仅作为了解(看个人情况)

Predicate是返回bool型的泛型委托,至少1个参数,至多1个参数,返回值固定为bool

官方示例

using System;
using System.Drawing; public class Example
{
public static void Main()
{
Point[] points = { new Point(100, 200),
new Point(150, 250), new Point(250, 375),
new Point(275, 395), new Point(295, 450) }; Predicate<Point> predicate = FindPoints;
Point first = Array.Find(points, predicate); Console.WriteLine("Found: X = {0}, Y = {1}", first.X, first.Y);
} private static bool FindPoints(Point obj)
{
return obj.X * obj.Y > 100000;
}
}

04.委托Delegation的更多相关文章

  1. 委托、Lambda表达式、事件系列04,委托链是怎样形成的, 多播委托, 调用委托链方法,委托链异常处理

    委托是多播委托,我们可以通过"+="把多个方法赋给委托变量,这样就形成了一个委托链.本篇的话题包括:委托链是怎样形成的,如何调用委托链方法,以及委托链异常处理. □ 调用返回类型为 ...

  2. 大话设计模式--委托--IOS

    最近看了一些关于IOS委托的文章,看完之后,感觉不大好. 引文: 委托delegation是一种简单但是功能强大的设计模式,它的功能是程序中一个对象代表另一个对象,或者一个对象与另外一个对象协同工作. ...

  3. 委托、Lambda表达式、事件系列07,使用EventHandler委托

    谈到事件注册,EventHandler是最常用的. EventHandler是一个委托,接收2个形参.sender是指事件的发起者,e代表事件参数. □ 使用EventHandler实现猜拳游戏 使用 ...

  4. 委托、Lambda表达式、事件系列06,使用Action实现观察者模式,体验委托和事件的区别

    在"实现观察者模式(Observer Pattern)的2种方式"中,曾经通过接口的方式.委托与事件的方式实现过观察者模式.本篇体验使用Action实现此模式,并从中体验委托与事件 ...

  5. 委托、Lambda表达式、事件系列05,Action委托与闭包

    来看使用Action委托的一个实例: static void Main(string[] args) { int i = 0; Action a = () => i++; a(); a(); C ...

  6. 委托、Lambda表达式、事件系列03,从委托到Lamda表达式

    在"委托.Lambda表达式.事件系列02,什么时候该用委托"一文中,使用委托让代码简洁了不少. namespace ConsoleApplication2 { internal ...

  7. 委托、Lambda表达式、事件系列02,什么时候该用委托

    假设要找出整型集合中小于5的数. static void Main(string[] args) { IEnumerable<int> source = new List<int&g ...

  8. 委托、Lambda表达式、事件系列01,委托是什么,委托的基本用法,委托的Method和Target属性

    委托是一个类. namespace ConsoleApplication1 { internal delegate void MyDelegate(int val); class Program { ...

  9. Kotlin枚举与委托深入详解

    枚举: 基本上跟Java的差不多,这里就过一遍既可,如下: 还可以接收参数,如下: 枚举还可以定义方法,如下: 看下错误提示: 所以可以这样: 然后咱们再冒号之前定义对象,如下: 下面来使用一下: 当 ...

随机推荐

  1. 简述MSTP与配置

    一.简介 二.MSTP概述 三.功能 四.配置命令 一.简介 多生成树协议MSTP(Multiple Spanning Tree Protocol)是IEEE 802.1s中定义的生成树协议,通过生成 ...

  2. Docker搭建EFK日志收集系统,并自定义es索引名

    EFK架构图 一.EFK简介 EFK不是一个软件,而是一套解决方案,并且都是开源软件,之间互相配合使用,完美衔接,高效的满足了很多场合的应用,是目前主流的一种日志系统. EFK是三个开源软件的缩写,分 ...

  3. weblogic项目转为tomcat之后出现的问题

    解决java - JAX-WS和版本冲突 itPublisher分享于2017-03-19 推荐:JWS,JAX-WS,JAX-RS,REST,Restlet,SOAP(JAVA Web Servic ...

  4. 21 shell Here Document/String

    Here Document 的用法 Here Document可以将它理解为"嵌入文档""内嵌文档""立即文档",它将命令需要处理的数据或者 ...

  5. pip 下载时出现问题TypeError: unsupported operand type(s) for -=: 'Retry' and 'int'

    我这里解决就是更新下载源,马德,中科的源居然不够快,我就只能换源了,一换就成功了 1.一次性(临时使用): 可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.ed ...

  6. 滑动窗口通用解leetcode字符串匹配问题

    滑动窗口,这玩意解决一些字符串匹配的题目是真的挺好用的,虽然本质还是双指针. 思路: 1.维护一个窗口,不断的向右边移动 2.满足要求后,移动左边,当不满足时,跳出. 3.重复1,2.得出答案. 下面 ...

  7. 构建自己的dockerfile

    一)创建自己的CentOS 构建dockerfile的原理图 Docker Hub中99%的镜像都是从FROM scratch这个基础镜像过来的.然后配置需要的软件和配置来进行构建. FROM #基础 ...

  8. STM32F103学习进程

    软硬件下载程序和程序运行的相关问题和解决方案,以我自身买的STM32F103C8T6为例 (1) 硬件需要 1. 购买一个STM32F103XXX的板子.这是一个操作实践性非常强的一个学习过程,如果没 ...

  9. python链接postgresql

    #需要安装的库 sudo apt-get install build-dep python-psycopg2 pip install psycopg2 #!/usr/bin/python # -*- ...

  10. 让5G技术“智慧”生活

    1.通讯技术的发展历程     2.5G技术的指标和具体概述        3. 5G的三个关键技术及概述             4.5G的应用场景及业务及安全挑战 如果你认为5G带来的只是下载视频 ...