C#高级编程 (第六版) 学习 第七章:委托和事件
第七章 委托和事件
回调(callback)函数是Windows编程的一个重要方面,实际上是方法调用的指针,也称为函数指针。
.Net以委托的形式实现了函数指针的概念,.Net的委托是类型安全的。
- 委托
使用委托的时候,需要先声明,后实例化。
声明委托
delegate void MethodInvoker(); |
可以在委托前加public,private,protected。
实际上,定义委托是指定义一个新类,委托实现为派生自基类System.MulticastDelegate。
使用委托
private delegate string GetAString();
static void Main() { int x = 10; GetAString firstMethod = new GetAString(x.ToString); Console.WriteLine("String is {0}", firstMethod()); // Console.WriteLine("String is {0}", firstMethod.Invoke());
} |
委托在语法上总是带有一个参数的构造函数,这个参数就是委托引用的方法
C#引入和委托推断:
GetAString firstMethod = x.ToString; |
多播委托
包含多个方法调用的委托。调用委托的个数也与方法相同
delegate void DoubleOp(double value);
DoubleOp operations = MathOperations.MultiplyByTwo; operations += MathOperations.Square; operations(2.0); |
会执行两个函数
也可使用-=
多播委托包含一个逐个调用的委托集合。如果通过委托调用的一个方法抛出了异常,整个迭代就会停止。解决方法:
DemoDelegate d1 = One; d1 += Two;
Delegate[] delegates = d1.GetInvocationList(); foreach(DemoDelegate d in delegates) { try { } catch(Exception) { } } |
匿名方法
delegate string DelegateTest(string val); … DelegateTest an1 = delegate(string param) { statements; }; |
lambada表达式
C#3.0引入,创建匿名函数
DelegateTest an1 = param => { statements; return "some string"; }; |
lambada表达式中,运算符=>左边列出了参数类型和个数
可以忽略类型,只写标识符,用括号括住,当标识符只有一个时,可以省略括号。
- 事件
例子
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Timers;
namespace Chapter_7 { public delegate void MessageHandler(string messageText);
public class Connection { public event MessageHandler MessageArrived; private Timer pollTimer; private static Random random = new Random(); private uint count = 0;
public Connection() { pollTimer = new Timer(100); pollTimer.Elapsed += new ElapsedEventHandler(CheckForMessage); }
public void Connect() { pollTimer.Start(); }
public void Disconnect() { pollTimer.Stop(); }
private void CheckForMessage(object source, ElapsedEventArgs e) { Console.WriteLine("Checking for new message."); if ((random.Next(9) == 0) && (MessageArrived != null)) { count++; MessageArrived("Hello Mum!"); } } } } |
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace Chapter_7 { public class Display { public void DisplayMessage(string message) { Console.WriteLine("message arrived:{0}", message); } } } |
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace Chapter_7 { public delegate void DoubleOp(double value); class Program { static void Main(string[] args) {
Connection myConnection = new Connection(); Display myDisplay = new Display(); myConnection.MessageArrived += new MessageHandler(myDisplay.DisplayMessage); myConnection.Connect(); Console.ReadKey(); } } } |
第一行定义事件发布器
第二行定义事件订阅器
最后一行演示事件使用方法
参考:http://www.runoob.com/csharp/csharp-event.html
C#高级编程 (第六版) 学习 第七章:委托和事件的更多相关文章
- C#高级编程 (第六版) 学习 第五章:数组
第五章 数组 1,简单数组 声明:int[] myArray; 初始化:myArray = new int[4]; 为数组分配内存. 还可以用如下的方法: int[] myArray = new in ...
- C#高级编程 (第六版) 学习 第四章:继承
第四章 继承 1,继承的类型 实现继承: 一个类派生于一个基类型,拥有该基类型所有成员字段和函数. 接口继承 一个类型只继承了函数的签名,没有继承任何实现代码. 2,实现继承 class MyDe ...
- C#高级编程 (第六版) 学习 第三章:对象和类型
第三章 对象和类型 1,类和结构 类存储在托管堆上 结构存储在堆栈上 2,类成员 类中的数据和函数称为类成员 数据成员 数据成员包括了字段.常量和事件 函数成员 方法:与某个类相关的函数,可以 ...
- C#高级编程 (第六版) 学习 第六章:运算符和类型强制转换
第六章 运算符和类型强制转换 1,运算符 类别 运算符 算术运算符 + - * / % 逻辑运算符 & | ^ ~ && || ! 字符串连接运算符 + 增量和减量运算符 ++ ...
- C#高级编程 (第六版) 学习 第一章:.Net体系结构
第一章 .Net体系结构 1,公共语言运行库(Common Language Runtime, CLR) .Net Framework的核心是其运行库的执行环境,称为公共语言运行库,或.Net运行库. ...
- C#高级编程(第六版)学习:第三十一章:Windows窗体
第三十一章 Windows窗体 创建Windows窗体应用程序 在文本编辑器中输入: /* * form.cs * a simple windows form * */ using System; u ...
- C#高级编程 (第六版) 学习 第二章:C#基础
第二章 基础 1,helloworld示例: helloworld.cs using System; using System.Collections.Generic; using System.Li ...
- ASP.NET MVC 4高级编程(第4版)
<ASP.NET MVC 4高级编程(第4版)> 基本信息 作者: (美)Jon Galloway Phil Haack Brad Wilson K. Scott All ...
- 《UNIX环境高级编程(第3版)》
<UNIX环境高级编程(第3版)> 基本信息 原书名:Advanced Programming in the UNIX Environment (3rd Edition) (Addison ...
随机推荐
- Delphi的FIFO实现
FIFO主要用于多个不同线程或进程之间数据交换时做缓冲区用,尤其适合实时数据通讯应用中的数据缓冲,接收线程(进程)将数据写入FIFO,处理线程(进程)从FIFO取出数据 本单元中: TMemoryFI ...
- 关于uip中的log和打印
简单易用,好区分 void uip_log(char *m){ printf("uIP log message: %s\n", m);}
- jinjia2的使用
模板 要了解jinja2,那么需要先理解模板的概念.模板在Python的web开发中广泛使用,它能够有效的将业务逻辑和页面逻辑分开,使代码可读性增强.并且更加容易理解和维护. 模板简单来说就是一个其中 ...
- (杭电1019 最小公倍数) Least Common Multiple
Least Common Multiple Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Other ...
- structc 开源框架简介
了解 structc-https://github.com/wangzhione/structc structc 是 C 构建基础项目框架. 不是太惊艳, 但绝对是 C 简单项目中一股清流. 它的前身 ...
- drag element
<div id="logDiv" draggable="true" style="border: 2px dotted red; width: ...
- 20155207第二周myod以及课堂测试
第二周myod以及课堂测试 第二周测试5 题目 1.除了main.c外,其他4个模块(add.c sub.c mul.c div.c)的源代码不想给别人,如何制作一个mymath.so共享库?main ...
- 20155310马英林 实验2 Windows口令破解
实 验 报 告 实验名称: 实验二 口令破解 姓名:马英林 学号: 20155310 班级: 1553 日期: 2017.10.24 一. 实验环境 •系统环境:Windows •网络环境:交换网络结 ...
- 客户端与服务器端同步Evernote
原文地址:http://www.zhihu.com/question/20238731 Evernote的同步方式是 以本地为基准同步到网络 还是 以网络为基准同步到本地 的? 若客户端从未与服务器端 ...
- 【洛谷P2245】星际导航
题面 题解 \(kruskal\)重构树板子题??(大雾 因为重构树上两点之间的\(LCA\)的权值就是原图上最小生成树上的瓶颈. 所以建个重构树,跑\(LCA\)即可. 代码 #include< ...