关于Event与delegate的一些对比

using System;

namespace ConsoleApplication3
{
 public delegate void MyDelegate(string str);

 class Class1
 {
  private static void Hello(string str){
   Console.WriteLine("Hello "+str);
  }

  private static void GoodBye(string str){
   Console.WriteLine("GoodBye "+str);
  }

  static void Main(string[] args)
  {
   MyDelegate a,b,c,d;
   a = new MyDelegate(Hello);
   b = new MyDelegate(GoodBye);
   c = a + b;
   d = c - a;
   a("A");
   b("B");
   c("C");
   d("D");

   Console.ReadLine();
  }
 }
}

我的理解就是,delegate就是一个函数的指针,用他声明的变量实质上就是一个函数,这就要求绑定的时候函数的返回值和参数列表必须符合delegate声明时候的要求。

这时候,我来比较一下event

   this.Load += new System.EventHandler(this.Page_Load);
很显然,这里的this.Load是一个事件,也是一个delegate,而这里的System.EventHandler()也是一个delegate,而且,他的返回值与参数列表和this.Load是相同的。这时候绑定的Page_Load,是System.EventHandler绑定的一个具体的函数,跟前两者的返回值和参数列表都相同。当this.Load事件发生的时候,触发了新new的System.EventHandler,从而运行了Page_Load.

找到了一个例子,事件处理的

using System;

public class EventTest
{
public delegate void MyEventHandler(object sender,System.EventArgs e);

public static void MyEventFunc(object sender,System.EventArgs e)
{
Console.WriteLine("My Event is done!");
}

private event MyEventHandler myevent;


public EventTest()
{

this.myevent+=new MyEventHandler(MyEventFunc);
}


public void RaiseEvent()
{
EventArgs e=new EventArgs();
if(myevent!=null)
myevent(this,e);
}


public static void Main()
{
EventTest et=new EventTest();
Console.WriteLine("Please input a");
if(Console.ReadLine()=="a")
et.RaiseEvent();
else
Console.WriteLine("Error");
}
}

//在这里myEvent是一个事件,也是一个delegate,给他加了一个处理的的delegate,也就是一个eventHandler,就是给这个事件添加的处理函数。在构造函数里面,把MyEventFunc和handler进行绑定。那么,如果触发了事件,就执行绑定的函数MyEventFunc.

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值