https://docs.microsoft.com/zh-cn/dotnet/standard/events/how-to-raise-and-consume-events

第一个示例演示如何引发和使用一个没有数据的事件。 它包含一个名为 Counter 类,该类具有一个名为 ThresholdReached 的事件。 当计数器值等于或者超过阈值时,将引发此事件。 EventHandler 委托与此事件关联,因为没有提供任何事件数据。

  1. using System;
  2.  
  3. namespace ConsoleApplication1
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Counter c = new Counter(new Random().Next());
  10. c.ThresholdReached += c_ThresholdReached;
  11.  
  12. Console.WriteLine("press 'a' key to increase total");
  13. while (Console.ReadKey(true).KeyChar == 'a')
  14. {
  15. Console.WriteLine("adding one");
  16. c.Add();
  17. }
  18. }
  19.  
  20. static void c_ThresholdReached(object sender, EventArgs e)
  21. {
  22. Console.WriteLine("The threshold was reached.");
  23. Environment.Exit();
  24. }
  25. }
  26.  
  27. class Counter
  28. {
  29. private int threshold;
  30. private int total;
  31.  
  32. public Counter(int passedThreshold)
  33. {
  34. threshold = passedThreshold;
  35. }
  36.  
  37. public void Add(int x)
  38. {
  39. total += x;
  40. if (total >= threshold)
  41. {
  42. OnThresholdReached(EventArgs.Empty);
  43. }
  44. }
  45.  
  46. protected virtual void OnThresholdReached(EventArgs e)
  47. {
  48. EventHandler handler = ThresholdReached;
  49. if (handler != null)
  50. {
  51. handler(this, e);
  52. }
  53. }
  54.  
  55. public event EventHandler ThresholdReached;
  56. }
  57. }

下一个示例演示如何引发和使用提供数据的事件。 EventHandler<TEventArgs> 委托与此事件关联,示例还提供了一个自定义事件数据对象的实例。

  1. using System;
  2.  
  3. namespace ConsoleApplication1
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Counter c = new Counter(new Random().Next());
  10. c.ThresholdReached += c_ThresholdReached;
  11.  
  12. Console.WriteLine("press 'a' key to increase total");
  13. while (Console.ReadKey(true).KeyChar == 'a')
  14. {
  15. Console.WriteLine("adding one");
  16. c.Add();
  17. }
  18. }
  19.  
  20. static void c_ThresholdReached(object sender, ThresholdReachedEventArgs e)
  21. {
  22. Console.WriteLine("The threshold of {0} was reached at {1}.", e.Threshold, e.TimeReached);
  23. Environment.Exit();
  24. }
  25. }
  26.  
  27. class Counter
  28. {
  29. private int threshold;
  30. private int total;
  31.  
  32. public Counter(int passedThreshold)
  33. {
  34. threshold = passedThreshold;
  35. }
  36.  
  37. public void Add(int x)
  38. {
  39. total += x;
  40. if (total >= threshold)
  41. {
  42. ThresholdReachedEventArgs args = new ThresholdReachedEventArgs();
  43. args.Threshold = threshold;
  44. args.TimeReached = DateTime.Now;
  45. OnThresholdReached(args);
  46. }
  47. }
  48.  
  49. protected virtual void OnThresholdReached(ThresholdReachedEventArgs e)
  50. {
  51. EventHandler<ThresholdReachedEventArgs> handler = ThresholdReached;
  52. if (handler != null)
  53. {
  54. handler(this, e);
  55. }
  56. }
  57.  
  58. public event EventHandler<ThresholdReachedEventArgs> ThresholdReached;
  59. }
  60.  
  61. public class ThresholdReachedEventArgs : EventArgs
  62. {
  63. public int Threshold { get; set; }
  64. public DateTime TimeReached { get; set; }
  65. }
  66. }

下一个示例演示如何声明事件的委托。 该委托名为 ThresholdReachedEventHandler。 这只是一个示例。 通常不需要为事件声名委托,因为可以使用 EventHandler 或者 EventHandler<TEventArgs> 委托。 只有在极少数情况下才应声明委托,例如,在向无法使用泛型的旧代码提供类时,就需要如此。

  1. using System;
  2.  
  3. namespace ConsoleApplication1
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Counter c = new Counter(new Random().Next());
  10. c.ThresholdReached += c_ThresholdReached;
  11.  
  12. Console.WriteLine("press 'a' key to increase total");
  13. while (Console.ReadKey(true).KeyChar == 'a')
  14. {
  15. Console.WriteLine("adding one");
  16. c.Add();
  17. }
  18. }
  19.  
  20. static void c_ThresholdReached(Object sender, ThresholdReachedEventArgs e)
  21. {
  22. Console.WriteLine("The threshold of {0} was reached at {1}.", e.Threshold, e.TimeReached);
  23. Environment.Exit();
  24. }
  25. }
  26.  
  27. class Counter
  28. {
  29. private int threshold;
  30. private int total;
  31.  
  32. public Counter(int passedThreshold)
  33. {
  34. threshold = passedThreshold;
  35. }
  36.  
  37. public void Add(int x)
  38. {
  39. total += x;
  40. if (total >= threshold)
  41. {
  42. ThresholdReachedEventArgs args = new ThresholdReachedEventArgs();
  43. args.Threshold = threshold;
  44. args.TimeReached = DateTime.Now;
  45. OnThresholdReached(args);
  46. }
  47. }
  48.  
  49. protected virtual void OnThresholdReached(ThresholdReachedEventArgs e)
  50. {
  51. ThresholdReachedEventHandler handler = ThresholdReached;
  52. if (handler != null)
  53. {
  54. handler(this, e);
  55. }
  56. }
  57.  
  58. public event ThresholdReachedEventHandler ThresholdReached;
  59. }
  60.  
  61. public class ThresholdReachedEventArgs : EventArgs
  62. {
  63. public int Threshold { get; set; }
  64. public DateTime TimeReached { get; set; }
  65. }
  66.  
  67. public delegate void ThresholdReachedEventHandler(Object sender, ThresholdReachedEventArgs e);
  68. }

C# 给类做事件的一般做法的更多相关文章

  1. 用block做事件回调来简化代码,提高开发效率

       我们在自定义view的时候,通常要考虑view的封装复用,所以如何把view的事件回调给Controller就是个需要好好考虑的问题, 一般来说,可选的方式主要有target-action和de ...

  2. VBA中自定义类和事件的(伪)注册

    想了解一下VBA中自定义类和事件,以及注册事件处理程序的方法. 折腾了大半天,觉得这样的方式实在称不上“注册”,所以加一个“伪”字.纯粹是瞎试,原理也还没有摸透.先留着,有时间再接着摸. 做以下尝试: ...

  3. QT_8_Qt中的事件处理_定时器事件_定时器类_事件分发器_事件过滤器_绘图事件_高级绘图事件_绘图设备_QFile 文件读写_QFileInfo文件信息

    Qt中的事件处理 1.1. 捕获QLabel中是鼠标事件 1.2. enterevent 鼠标进入 1.3. leaveevent 鼠标离开 1.4. 鼠标按下MyLabel::mousePressE ...

  4. 前端(十八)—— jQuery高级操作:选择器、文本属性与类、事件、文档操作、动画、结构关系

    JQ选择器.文本属性与类.事件.文档操作.动画.结构关系 可参考jQuery的API文档 一.选择器 1.css语法匹配 标签 | 类 | id | 交集 群组 | 后代 | 兄弟 伪类 | 属性 $ ...

  5. django使用类做业务逻辑

    在django中一般定义一个带有request参数的函数用来处理url,但是更推荐用类做 从django.views.generic.base 导入的views有get,post等各种函数,用来处理对 ...

  6. springboot+redis做事件过期通知业务

    springboot+redis做事件过期通知 博主也是初次体验,不足之处多多指教 我的业务场景 系统管理员要给维护员分配巡查路口设施的工作,由于路口比较多,管理员不知道哪些路口已经被分配了,况且过了 ...

  7. C++ 友元 (全局函数做友元) (类做友元) (成员函数做友元)

    1 //友元 全局函数做友元 2 /* 3 #include <iostream> 4 #include <string> 5 using namespace std; 6 7 ...

  8. 微信浏览器或各种移动浏览器上:active伪类做的触觉反馈失效

    在做移动端页面的时候,会发现PC上那种:hover的效果是不管用了的,但又要给用户一个点击反馈怎么办呢?我管它叫触觉反馈. 细心点就会发现浏览器有自带了一点触觉反馈,在点击a.button.input ...

  9. C#基础-事件 继承类无法直接引发基类的事件

    An event can be raised only from the declaration space in which it is declared. Therefore, a class c ...

随机推荐

  1. a标签响应onclick事件,并且不执行href动作

    1.javascript:void(0)相当于一个死链接,href不执行 <a href="javascript:void(0)" onclick="doSomet ...

  2. hbase shell operate

    , start hdfs [hadoop@alamps sbin]$ ./start-all.sh This script is Deprecated. Instead use start-dfs.s ...

  3. MPI Maelstrom(East Central North America 1996)(poj1502)

    MPI Maelstrom 总时间限制:  1000ms 内存限制:  65536kB 描述 BIT has recently taken delivery of their new supercom ...

  4. ios 回调函数作用

    //应用程序启动后调用的第一个方法 不懂的程序可以做不同的启动 //launchOption参数的作业:应用在特定条件下的不同启动参数 比如:挑战的支付宝支付 - (BOOL)application: ...

  5. 多线程实现Thread.Start()与ThreadPool.QueueUserWorkItem两种方式对比

    Thread.Start(),ThreadPool.QueueUserWorkItem都是在实现多线程并行编程时常用的方法.两种方式有何异同点,而又该如何取舍? 写一个Demo,分别用两种方式实现.观 ...

  6. Python读取excel数据类型处理

    一.python xlrd读取datetime类型数据:https://blog.csdn.net/y1535766478/article/details/78128574 (1)使用xlrd读取出来 ...

  7. 解读NoSQL数据库的四大家族

    在目前的企业IT架构中,系统管理员以及DBA都会考虑使用NoSQL数据库来解决RDBMS所不能解决的问题,特别是互联网行业.传统的关系型数据库主要以表(table)的形式来存储数据,而无法应对非结构化 ...

  8. Java 内存分配

    静态储存区:全局变量,static 内存在编译的时候就已经分配好了,并且这块内存在程序运行期间都存在. 栈储存区:1,局部变量.2,,保存类的实例,即堆区对象的引用.也可以用来保存加载方法时的帧.函数 ...

  9. USMART 组件移植到STM32

    USMART是由ALIENTEK开发的一个串口调试助手组件,通过它可以通过串口调试助手,调用程序里面的任何函数并执行,单个函数最多支持10个输入参数,并支持函数返回值显示. USMART支持的参数类型 ...

  10. Lucene 个人领悟 (二)

    想了想,还是继续写吧,因为,太无聊了,媳妇儿也还有半个小时才下班. 前面拖拖拉拉用了三篇文章来做铺垫,这一篇开始正经搞了啊. 首先,我要加几个链接 http://www.cnblogs.com/xin ...