理解C#中的委托和事件
作者:网络转载 发布时间:[ 2014/8/19 11:45:23 ] 推荐标签:委托 事件 C#
一直不甚至理解C#中委托和事件的概念和用法,在网上参看数篇文字之后略有所得,好记性不如烂键盘,故以文字记下。
首先,设想一个简单场景(或许不太贴切)来说明,夜深人静,屋里有老鼠蹑手蹑脚的行动,且随时提防着猫,如果听到猫叫,老鼠闻声立即逃回洞里。
这个场景可以抽象为委托和事件的几个要素:
猫和老鼠分别是两个对象,猫是激发事件的对象,猫叫是一个方法,同时引发一个事件,老鼠作为事件的处理者,它的处理结果是听到猫叫逃跑,这样定义一个委托是表示老鼠对猫的动静的监听。
简单实现代码如下:
None.gifusing System;
None.gifusing System.Collections.Generic;
None.gifusing System.Text;
None.gifnamespace TestConsole
ExpandedBlockStart.gif{
InBlock.gif// 定义一个委托,用来表示老鼠监听着猫的动静
InBlock.gifpublicdelegatevoid CatListeningHandler();
InBlock.gif
InBlock.gifpublicclass Cat
ExpandedSubBlockStart.gif{
InBlock.gif//定义一个事件,这个事件表示猫叫了
InBlock.gifpublicevent CatListeningHandler CatCry;
InBlock.gif
InBlock.gifpublicvoid Cry()
ExpandedSubBlockStart.gif{
InBlock.gif Console.WriteLine("Meow~~");
InBlock.gif OnCry();
ExpandedSubBlockEnd.gif }
InBlock.gif
InBlock.gifprotectedvirtualvoid OnCry()
ExpandedSubBlockStart.gif{
InBlock.gifif (CatCry !=null)
ExpandedSubBlockStart.gif{
InBlock.gif CatCry();
ExpandedSubBlockEnd.gif }
ExpandedSubBlockEnd.gif }
ExpandedSubBlockEnd.gif }
InBlock.gif
InBlock.gifpublicclass Mouse
ExpandedSubBlockStart.gif{
InBlock.gifpublicvoid Run()
ExpandedSubBlockStart.gif{
InBlock.gif Console.WriteLine("Mouse run awaydot.gif");
ExpandedSubBlockEnd.gif }
ExpandedSubBlockEnd.gif }
InBlock.gif
InBlock.gifclass Program
ExpandedSubBlockStart.gif{
InBlock.gifstaticvoid Main(string[] args)
ExpandedSubBlockStart.gif{
InBlock.gif Cat cat =new Cat();
InBlock.gif
InBlock.gif Mouse mouse =new Mouse();
InBlock.gif
InBlock.gif// 把猫叫和老鼠逃跑联系起来
InBlock.gif cat.CatCry +=new CatListeningHandler(mouse.Run);
InBlock.gif
InBlock.gif cat.Cry();
ExpandedSubBlockEnd.gif }
ExpandedSubBlockEnd.gif }
ExpandedBlockEnd.gif}
None.gif
小结:cat.CatCry +=new CatListeningHandler(mouse.Run)中CatListenningHandler是一个委托,它接收一个无参无返回值的方法名作为参数,CatCry是该委托的事件实例用+=操作符把委托挂接到事件,简单的说是当触发CatCry事件的时候,方面mouse.Run()会执行。事件实例CatCry可以用+=链接多个委托实例,而后触发事件时多个链接的委托方法会按序执行。如委托链中有不需要的委托,可用-=操作符移除。
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11