热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

【学习笔记】事件如何使用

经过学习,终于搞清了事件的使用,以下附上一个小例子事件主要使用三个类:1.参数定义类testEventArgs:继承自E

经过学习,终于搞清了事件的使用,以下附上一个小例子

事件主要使用三个类:

1. 参数定义类testEventArgs:继承自EventArgs(虽然EventArgs什么也不做)

2. 事件发布类monitor

3. 事件侦听类Receiver

 

using System;
using System.Collections.Generic;
using System.Text;namespace EventLearn
{class testArgs:EventArgs{public string msg;public testArgs(string msg){this.msg = msg;}}class monitor{public delegate void delegateHander(object sender, testArgs e);public event delegateHander pressKey;public void Run(){do{Console.WriteLine("Please press any key. Input 'exit' to finish the process!");string input=Console.ReadLine();if (input == "exit")break;pressKey(this,new testArgs(input));}while(true);}}class Receiver{public Receiver(monitor Monitor){Monitor.pressKey += new monitor.delegateHander(this.process);}public void process(object sender, testArgs e){Console.WriteLine("You have input the string: {0}", e.msg);}}
}


主程序如下:

using System;
using System.Collections.Generic;
using System.Text;namespace EventLearn
{class Program{static void Main(string[] args){monitor Monitor = new monitor();Receiver receiver = new Receiver(Monitor);Monitor.Run();Console.ReadKey();}}
}


 


推荐阅读
author-avatar
天蝎快乐公主_594
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有