• C#中委托和事件的使用总结


    委托(delegate)特别用于实现事件和回调方法。所有的委托(Delegate)都派生自 System.Delegate 类。事件是一种特殊的多播委托,仅可以从声明事件的类或结构中对其进行调用。类或对象可以通过事件向其他类或对象通知发生的相关事情。本文主要介绍C#中委托和事件的使用总结。

    1、委托的简单使用

    一个委托类型定义了该类型的实例能调用的一类方法,这些方法含有同样的返回类型和同样参数(类型和个数相同)。委托和接口一样,可以定义在类的外部。

    例如,

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. using System.Threading.Tasks;
    6. namespace ConsoleApplication
    7. {
    8. delegate int Calculator(int x);
    9. class Program
    10. {
    11. static int Double(int x) { return x * 2; }
    12. static void Main(string[] args)
    13. {
    14. Calculator c = Double;
    15. int result = c(2);
    16. Console.Write(result);
    17. Console.ReadKey();
    18. }
    19. }
    20. }

    2、用委托实现插件式编程

    委托是一个能把方法作为参数传递的对象,通过这个可以来实现插件式编程。

    例如,

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. using System.Threading.Tasks;
    6. namespace ConsoleApplication
    7. {
    8. delegate int Calculator(int x);
    9. class Program
    10. {
    11. static int Double(int x) { return x * 2; }
    12. static void Main(string[] args)
    13. {
    14. int[] values = { 1, 2, 3, 4 };
    15. Utility.Calculate(values, Double);//使用方法
    16. Utility.Calculate(values, x => x * 2);//使用Lambda表达式
    17. foreach (int i in values)
    18. Console.Write(i + " "); // 2 4 6 8
    19. Console.ReadKey();
    20. }
    21. }
    22. class Utility
    23. {
    24. public static void Calculate(int[] values, Calculator c)
    25. {
    26. for (int i = 0; i < values.Length; i++)
    27. values[i] = c(values[i]);
    28. }
    29. }
    30. }

    3、多播委托

    多播委托是指在一个委托中注册多个方法,在注册方法时可以在委托中使用加号运算符或者减号运算符来实现添加或撤销方法。创建一个委托被调用时要调用的方法的调用列表。这被称为委托的 多播(multicasting),也叫组播。

    例如,

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. using System.Threading.Tasks;
    6. namespace ConsoleApplication
    7. {
    8. public delegate void ProgressReporter(int percentComplete);
    9. public class Utility
    10. {
    11. public static void Match(ProgressReporter p)
    12. {
    13. if (p != null)
    14. {
    15. for (int i = 0; i <= 10; i++)
    16. {
    17. p(i * 10);
    18. System.Threading.Thread.Sleep(100);
    19. }
    20. }
    21. }
    22. }
    23. class Program
    24. {
    25. static void Main(string[] args)
    26. {
    27. ProgressReporter p = WriteProgressToConsole;
    28. p += WriteProgressToFile;
    29. Utility.Match(p);
    30. Console.WriteLine("Done.");
    31. Console.ReadKey();
    32. }
    33. static void WriteProgressToConsole(int percentComplete)
    34. {
    35. Console.WriteLine(percentComplete + "%");
    36. }
    37. static void WriteProgressToFile(int percentComplete)
    38. {
    39. System.IO.File.AppendAllText("progress.txt", percentComplete + "%");
    40. }
    41. }
    42. }

    4、静态方法和实例方法对于委托的区别

    一个类的实例的方法被赋给一个委托对象时,在上下文中不仅要维护这个方法,还要维护这个方法所在的实例。System.Delegate 类的Target属性指向的就是这个实例。

    例如,

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. using System.Threading.Tasks;
    6. namespace BRG
    7. {
    8. public delegate void ProgressReporter(int percentComplete);
    9. class Program
    10. {
    11. static void Main(string[] args)
    12. {
    13. X x = new X();
    14. ProgressReporter p = x.InstanceProgress;
    15. p(1);
    16. Console.WriteLine(p.Target == x); // True
    17. Console.WriteLine(p.Method); // Void InstanceProgress(Int32)
    18. }
    19. static void WriteProgressToConsole(int percentComplete)
    20. {
    21. Console.WriteLine(percentComplete + "%");
    22. }
    23. static void WriteProgressToFile(int percentComplete)
    24. {
    25. System.IO.File.AppendAllText("progress.txt", percentComplete + "%");
    26. }
    27. }
    28. class X
    29. {
    30. public void InstanceProgress(int percentComplete)
    31. {
    32. // do something
    33. }
    34. }
    35. }

    但对于静态方法,System.Delegate 类的Target属性是Null,所以将静态方法赋值给委托时性能更好。

    5、泛型委托

    泛型委托和泛型的用法一样,就是含有泛型参数的委托。

    例如,

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. using System.Threading.Tasks;
    6. namespace ConsoleApplication
    7. {
    8. public delegate T Calculator<T>(T arg);
    9. class Program
    10. {
    11. static int Double(int x) { return x * 2; }
    12. static void Main(string[] args)
    13. {
    14. int[] values = { 1, 2, 3, 4 };
    15. Utility.Calculate(values, Double);
    16. foreach (int i in values)
    17. Console.Write(i + " "); // 2 4 6 8
    18. Console.ReadKey();
    19. }
    20. }
    21. class Utility
    22. {
    23. public static void Calculate<T>(T[] values, Calculator<T> c)
    24. {
    25. for (int i = 0; i < values.Length; i++)
    26. values[i] = c(values[i]);
    27. }
    28. }
    29. }

    6、事件的基本使用

    声明一个事件很简单,只需在声明一个委托对象时加上event关键字就行。

    例如,

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. namespace Example_EventTest
    6. {
    7. class Judgment
    8. {
    9. //定义一个委托
    10. public delegate void delegateRun();
    11. //定义一个事件
    12. public event delegateRun eventRun;
    13. //引发事件的方法
    14. public void Begin()
    15. {
    16. eventRun();//被引发的事件
    17. }
    18. }
    19. class RunSports
    20. {
    21. //定义事件处理方法
    22. public void Run()
    23. {
    24. Console.WriteLine("开始运行方法");
    25. }
    26. }
    27. class Program
    28. {
    29. static void Main(string[] args)
    30. {
    31. RunSports runsport = new RunSports();//实例化事件发布者
    32. Judgment judgment = new Judgment();//实例化事件订阅者
    33. //订阅事件
    34. judgment.eventRun+=new Judgment.delegateRun(runsport.Run);
    35. //引发事件
    36. judgment.Begin();
    37. Console.ReadKey();
    38. }
    39. }
    40. }

    注意:事件有一系列规则和约束用以保证程序的安全可控,事件只有 +=-= 操作,这样订阅者只能有订阅或取消订阅操作,没有权限执行其它操作。如果是委托,那么订阅者就可以使用 = 来对委托对象重新赋值(其它订阅者全部被取消订阅),甚至将其设置为null,甚至订阅者还可以直接调用委托。

    事件保证了程序的安全性和健壮性。

    7、事件的标准模式

    .NET 框架为事件编程定义了一个标准模式。设定这个标准是为了让.NET框架和用户代码保持一致。System.EventArgs是标准模式的核心,它是一个没有任何成员,用于传递事件参数的基类。按照标准模式,事件定义委托,必须满足以下条件:

    1)必须是 void 返回类型;

    2)必须有两个参数,且第一个是object类型,第二个是EventArgs类型(的子类);

    3)它的名称必须以EventHandler结尾。

    例如,

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

  • 相关阅读:
    【2022】Python自动化测试,软件测试最全学习路线......
    CocoaPods公有库和私有库制作
    git 合并分支某次(commit)提交
    IntelliJ IDEA 简介
    测试开发都这么厉害了?为啥不直接转业务开发?
    MVVM的理解
    陈宥维《虎鹤妖师录》“显眼包”太子成长记 表演灵动获好评
    excel公式怎么完全复制到另一列?
    智能合约安全——私有数据访问
    SAP SEGW 事物码里的 ABAP 类型和 EDM 类型映射的一个具体例子
  • 原文地址:https://blog.csdn.net/lwf3115841/article/details/134484793