What are the differences between delegate and an event?

An event declaration adds a layer of abstraction and protection on the delegate instance. This protection prevents clients of the delegate from resetting the delegate and its invocation list and only allows adding or removing targets from the invocation list. 

To understand the differences you can look at 2 examples below:

Example with Delegate

First let's try to implement an "event trigger" by using "delegate" instead of "event". 

in this case, the example delegate Run is an Action - that is a kind of delegate that doesn't return a value.

  1. publicclassAnimal
  2. {
  3. publicActionRun{get;set;}
  4. publicvoidRaiseEvent()
  5. {
  6. if(Run!=null)
  7. {
  8. Run();
  9. }
  10. }
  11. }

To use the delegate, you should do something like this:

  1. Animal animal=newAnimal();
  2. animal.Run+=()=>Console.WriteLine("I'm running");
  3. animal.Run+=()=>Console.WriteLine("I'm still running");
  4. animal.RaiseEvent();

This code works well but you could have some weak spots

For example, if I write this:

  1. animal.Run+=()=>Console.WriteLine("I'm running");
  2. animal.Run+=()=>Console.WriteLine("I'm still running");
  3. animal.Run=()=>Console.WriteLine("I'm sleeping");

with the last line of code, I have overridden the previous behaviors just with one missing + (I have used = instead of +=)

Another weak spot is that every class which uses your Animal class can raise the Run event without calling the public RaiseEvent function, but with code snippet like:

  1. if(animal.Run!=null)
  2. {
  3. animal.Run();
  4. }

To avoid these weak spots you can use events in c#.

Example with Event

Your "event version" of the Animal class will looks like:

  1. publicclassArgsSpecial:EventArgs
  2. {
  3. publicArgsSpecial(string val)
  4. {
  5. Operation=val;
  6. }
  7. publicstringOperation{get;set;}
  8. }
  9. publicclassAnimal
  10. {
  11. // Empty delegate. In this way you are sure that value is always != null
  12. // because no one outside of the class can change it.
  13. publiceventEventHandler<ArgsSpecial>Run=delegate{};
  14. publicvoidRaiseEvent()
  15. {
  16. Run(this,newArgsSpecial("Run faster"));
  17. }
  18. }

to call events

  1. Animal animal=newAnimal();
  2. animal.Run+=(sender, e)=>Console.WriteLine("I'm running. My value is {0}", e.Operation);
  3. animal.RaiseEvent();

Differences:

1. You aren't using a public property but a public field. 

Using events, the compiler protects your fields from unwanted access 

2. Event can't be assigned directly. 

In this case, it is impossible to override the previous behaviors by using = instead of +=. 

3. No one outside of your class can raise the event. 

Even the Run event is public, a compiler error will occur if someone tries to raise the event with code snippet below:

  1. // Error: the event 'delegateEvent.Animal.Run' can only appear on the left hand side of += or -=
  2. // (except when used from within the type 'delegateEvent.Animal')
  3. animal.Run(animal,newArgsSpecial("Run slower"));

4. Event can be included in an interface declaration, whereas a delegate field cannot.

delegate vs event的更多相关文章

  1. 浅谈c#中的delegate和event了

    一.开篇忏悔 对自己最拿手的编程语言C#,我想对你说声对不起,因为我到现在为止才明白c#中的delegate和event是怎么用的,惭愧那.好了,那就趁着阳光明媚的早晨简单来谈谈delegate和ev ...

  2. 第一章、C#委托和事件(Delegate、Event、EventHandler、EventArgs)

    第一章.C#委托和事件(Delegate.Event.EventHandler.EventArgs) 分类: 学习笔记-C#网络编程2012-12-08 14:10 7417人阅读 评论(3) 收藏  ...

  3. delegate和event

    经过查阅资料和自己的理解整理出来的,欢迎大家指教. delegate和event 何时使用: 异步的时候,比如加载完成通知. 需要回调的时候,比如按钮点击.动画播放结束等. 发送事件通知的时候. 比如 ...

  4. .NET 中易混淆的概念(Delegate vs Event)

    事件(event)是一个非常重要的概念,我们的程序时刻都在触发和接收着各种事件:鼠标点击事件,键盘事件,以及处理操作系统的各种事件.所谓事件就是 由某个对象发出的消息.比如用户按下了某个按钮,某个文件 ...

  5. 观察者模式与.NET的delegate、event机制

    1.引言 最近在写一些程序玩的时候,接触到了delegate(委托)和event(事件),网上查找了很多的资料,有些博文说可以把delegate近似当做C++当中的函数指针来看,由于自己本身对C++的 ...

  6. [转] C#中的delegate 和 event

    转至:here 终于会用c#中的delegate(委托) 作者:qq826364410 引言 Delegate是Dotnet1.0的时候已经存在的特性了,但由于在实际工作中一直没有机会使用Delega ...

  7. C#: Delegate and Event

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...

  8. delegate 和 event

    delegate 和 event 观察者模式 这里面综合了几本书的资料. 需求 有这么个项目: 需求是这样的: 一个气象站, 有三个传感器(温度, 湿度, 气压), 有一个WeatherData对象, ...

  9. [转载]C#委托和事件(Delegate、Event、EventHandler、EventArgs)

    原文链接:http://blog.csdn.net/zwj7612356/article/details/8272520 14.1.委托 当要把方法作为实参传送给其他方法的形参时,形参需要使用委托.委 ...

  10. C#中Delegate和Event以及它们的区别(转载)

    一.Delegate委托可以理解为一个方法签名. 可以将方法作为另外一个方法的参数带入其中进行运算.在C#中我们有三种方式去创建委托,分别如下: public delegate void Print( ...

随机推荐

  1. win7下wamp扩展memcache

    1.服务端安装 1.1 下载地址 http://download.csdn.net/detail/feiyuhit/5873533#comment 1.2 安装 将下载的压缩文件夹的memcached ...

  2. PHP读取Excel文件(PHPExcel)

    /*     * 读取Excel文件     * */    require_once (dirname(dirname(dirname(__FILE__))).'/PHPExcel/PHPExcel ...

  3. python 爬取的数据要如何展现(可视化)?

    我是把数据放在 mongodb ,然后单独一个脚本作分析,导出 json ,用 c3.js 画图,然后随便写个很简单的页面就好了. 展示在这里: http://107.170.207.236/job_ ...

  4. python获取绑定的IP,并动态指定出口IP

    在做采集器的过程中,经常会遇到IP限制的情况,这时候可以通过切换IP能继续访问. 如果是多IP的服务器,那么可以通过切换出口Ip来实现. 1.首先是如何获取服务器绑定的IP import netifa ...

  5. CodeForces 755C PolandBall and Forest (并查集)

    题意:给定每一点离他最远的点,问是这个森林里有多少棵树. 析:并查集,最后统计不同根结点的数目即可. 代码如下: #pragma comment(linker, "/STACK:102400 ...

  6. Python3基础 使用clear() 清空一个字典

    镇场诗: 诚听如来语,顿舍世间名与利.愿做地藏徒,广演是经阎浮提. 愿尽吾所学,成就一良心博客.愿诸后来人,重现智慧清净体.-------------------------------------- ...

  7. dubbo框架揭秘之服务引用

    ApplicationConfig config = new ApplicationConfig("hello-worldp"); RegistryConfig reg = new ...

  8. iOS 开发 旧版 framework

    0. 参考 http://www.cocoachina.com/ios/20150127/11022.html http://www.cnblogs.com/gcb999/p/3296414.html ...

  9. Html 和 Css 的杂乱总结

    1. input 中可以设置 maxLength 属性,控制输入的文字数量,中英文字节数一样,但是没有验证兼容性 2.客户端中的页面禁止右键,复制等 <body scroll="no& ...

  10. 拖动条(SeekBar)的功能和用法

    拖动条和进度条非常相似,只是进度条采用颜色填充来表明进度完成的程序,而拖动条则通过滑块的位置来标识数值——而且拖动条允许用户拖动滑块来改变值,因而拖动条通常用于对系统的某种数值进行调节,比如调节音量等 ...