• C#——委托


    什么是委托

          C# 中的委托(Delegate)类似于 C 或 C++ 中函数的指针。委托(Delegate) 是存有对某个方法的引用的一种引用类型变量。引用可在运行时被改变。

    声明委托

            委托声明决定了可由该委托引用的方法。委托可指向一个与其具有相同标签的方法。

            语法

    修饰符 delegate 返回值类型 委托名 ( 参数列表 );

    delegate void IntMethodInvoker(intx);

            定义了一个委托叫做 IntMethodInvoker ,这个委托可以指向带有一个int类型的参数,并且返回值是void的一个方法。

            定义一个委托要定义方法的参数和返回值,使用delegate定义

    delegate void FirstInvoke(int x);

    实例化委托

            在定义好委托后就可以实例化委托,命名方法委托在实例化委托时必须带入方法的具体名称或者是null。

    委托名  委托对象名 = new 委托名 ( 方法名 );

    1. delegate void FirstInvoke(int x);
    2. static void Main(string[] args)
    3. {
    4. FirstInvoke firstInvoke = new FirstInvoke(PutOutX);
    5. }
    6. public static void PutOutX(int x)
    7. {
    8. Console.WriteLine(x);
    9. }

    委托的实现方法

            

    1. delegate void FirstInvoke(int x);
    2. delegate string Str();
    3. static void Main(string[] args)
    4. {
    5. FirstInvoke firstInvoke = new FirstInvoke(PutOutX);
    6. firstInvoke(3);
    7. Str str = 872.ToString;
    8. Console.WriteLine(str());
    9. }
    10. public static void PutOutX(int x)
    11. {
    12. Console.WriteLine(x);
    13. }

    委托数组

    委托名[] 委托对象名 = {委托的方法1,......}; 

    FuncArray[] funcArray = { DoubleValue, AreaValue };

    委托做完函数的参数

    访问类型 static 返回类型 方法名(委托类型 委托参数,参数.....) 

    public static void FuncAry(FuncArray func, int value)
    1. public delegate int FuncArray(int x);
    2. public static void Test2()
    3. {
    4. //委托数组
    5. FuncArray[] funcArray = { DoubleValue, AreaValue };
    6. foreach(FuncArray func in funcArray)
    7. {
    8. FuncAry(func, 3);
    9. }
    10. }
    11. public static int DoubleValue(int x)
    12. {
    13. return x * 2;
    14. }
    15. public static int AreaValue(int x)
    16. {
    17. return x * x;
    18. }
    19. ///
    20. /// 委托可以作为参数使用
    21. ///
    22. /// 委托
    23. /// 传入的值
    24. public static void FuncAry(FuncArray func, int value)
    25. {
    26. Console.WriteLine("这是方法" + func + "值是" + func(value));
    27. }

    Action

            Action是.NET Framework内置的泛型委托,可以使用Action委托以参数形式传递方法,而不用显示声明自定义的委托。封装的方法必须与此委托定义的方法签名相对应。也就是说,封装的方法必须具有一个通过值传递给它的参数,并且不能有返回值。

    Action<参数类型> 委托对象名 = 方法名

    Action<int> action2 = Func2;
    1. public static void Test3()
    2. {
    3. Action action1 = Func1;
    4. action1();
    5. Action<int> action2 = Func2;
    6. action2(1);
    7. }
    8. public static void Func1()
    9. {
    10. Console.WriteLine("0");
    11. }
    12. public static void Func2(int value)
    13. {
    14. Console.WriteLine(value);
    15. }

     

     Func

     参数最后一位就是返回值类型返回值的类型和Func输出参数类型相同

    Func<参数,返回类型> 委托对象名 = 方法名

    Func<int, int> func2 = Func4;
    1. Func<int> func1 = Func3;
    2. Console.WriteLine(func1());
    3. Func<int, int> func2 = Func4;
    4. Console.WriteLine(func2(1));
    5. public static int Func3()
    6. {
    7. return 0;
    8. }
    9. public static int Func4(int value)
    10. {
    11. return value;
    12. }

    委托实现实例的排序

    1. public static void Test4()
    2. {
    3. Employee[] employees =
    4. {
    5. new Employee("A",8),
    6. new Employee("B",3),
    7. new Employee("C",1),
    8. new Employee("D",4),
    9. new Employee("E",1),
    10. new Employee("F",7),
    11. new Employee("G",2),
    12. };
    13. Sort(employees, Employee.Compare);
    14. foreach(Employee e in employees)
    15. {
    16. Console.WriteLine(e.Name + ":" + e.Salary);
    17. }
    18. }
    19. ///
    20. /// 对雇员类按照制定排序方法排序
    21. ///
    22. /// 排序数据的类型
    23. /// 排序的对象
    24. /// 排序的方法
    25. public static void Sort<T>(T[] data,Funcbool> compare)
    26. {
    27. bool swapped = true;
    28. do
    29. {
    30. swapped = false;
    31. for (int i = 0; i < data.Length - 1; i++)
    32. {
    33. if (compare(data[i], data[i + 1]))
    34. {
    35. T temp = data[i];
    36. data[i] = data[i + 1];
    37. data[i + 1] = temp;
    38. swapped = true;
    39. }
    40. }
    41. } while (swapped );
    42. }
    43. }
    44. internal class Employee
    45. {
    46. public string Name { get; private set; }
    47. public double Salary { get; private set; }
    48. public Employee(string name, double salary)
    49. {
    50. Name = name;
    51. Salary = salary;
    52. }
    53. //雇员的比较方法
    54. public static bool Compare(Employee e1,Employee e2)
    55. {
    56. return e1.Salary > e2.Salary;
    57. }
    58. }

    多播委托

            委托可以包含多个方法,这种委托叫做多播委托。使用多播委托就可以按照顺序调用多个方法,多播委托只能得到调用的最后一个方法的结果,一般我们把多播委托的返回类型声明为void。

    Action action1 = Test1;

    action2 += Test2;

    action2 -= Test1

    //获取委托列表

    Delegate[] delegate = action1.GetInvocationList();

    1. public static void Test5()
    2. {
    3. FirstInvoke firstInvoke = null;
    4. firstInvoke += PutOutX;
    5. firstInvoke += DoubleValue;
    6. firstInvoke(4);
    7. }

     

      匿名方法

            不用去定义一个方法,而是在后面直接使用匿名的方法。相当于直接把要引用的方法直接写在了后面,优点是减少了要编写的代码,减少代码的复杂性。

    Func 委托对象名 = delegate(方法参数){

            方法体

    };

     

    1. public static void Test6()
    2. {
    3. Func<int, int, int> plue = delegate (int a, int b)
    4. {
    5. return a + b;
    6. };
    7. int res = plue(1, 2);
    8. Console.WriteLine(res);
    9. }

    事件

            事件(Event)是类或者对象向其他类或对象通知发送的事情的一种特殊签名的委托

            事件的声明

    public event 委托类型 事件名;

            事件使用event关键词来声明,他的返回值是一个委托类型

            通常事件的命名,以名字+Event 作为他的名称,在编码中尽量使用规范命名,增加代码可读性。

    工具人类

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Text;
    4. namespace _03_事件
    5. {
    6. //定义委托,可以让其他构造函数调用
    7. delegate void DownStairDelegate();
    8. ///
    9. /// 工具人类
    10. ///
    11. class ToolMan
    12. {
    13. public string Name { get;private set; }
    14. //声明委托,event可以让外部无法直接访问这个委托
    15. public event DownStairDelegate DownStairDelegate = null;
    16. public ToolMan(string name)
    17. {
    18. Name = name;
    19. }
    20. public void DownStair()
    21. {
    22. Console.WriteLine("工具人" + Name + "下楼了");
    23. //在调用委托之前先检测委托是否为空
    24. if (DownStairDelegate != null)
    25. DownStairDelegate();
    26. }
    27. }
    28. }

     懒人类

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Text;
    4. namespace _03_事件
    5. {
    6. ///
    7. /// 懒人的构造函数
    8. ///
    9. class LazyMan
    10. {
    11. public string Name { get;private set; }
    12. public LazyMan(string name)
    13. {
    14. Name = name;
    15. }
    16. public void TakeFood()
    17. {
    18. Console.WriteLine("给" + Name + "拿了外卖");
    19. }
    20. public void TakePackage()
    21. {
    22. Console.WriteLine("给" + Name+"拿了快递");
    23. }
    24. }
    25. }

    主方法

    1. using System;
    2. namespace _03_事件
    3. {
    4. class Program
    5. {
    6. static void Main(string[] args)
    7. {
    8. ToolMan toolMan = new ToolMan("A");
    9. LazyMan lazyMan1 = new LazyMan("B");
    10. LazyMan lazyMan2 = new LazyMan("C");
    11. LazyMan lazyMan3 = new LazyMan("D");
    12. toolMan.DownStair();
    13. toolMan.DownStairDelegate += lazyMan1.TakeFood;
    14. toolMan.DownStairDelegate += lazyMan2.TakePackage;
    15. toolMan.DownStairDelegate += lazyMan3.TakeFood;
    16. toolMan.DownStair();
    17. toolMan.DownStairDelegate -= lazyMan1.TakeFood;
    18. toolMan.DownStairDelegate -= lazyMan2.TakePackage;
    19. toolMan.DownStair();
    20. //toolMan.DownStairDelegate();
    21. }
    22. }
    23. }

  • 相关阅读:
    信息系统概述-生命周期-开发方法
    代码随想录算法训练营第五十三天|1143.最长公共子序列、1035.不相交的线、53. 最大子序和
    Three---面向对象与面向过程/属性和变量/关于self/一些魔法方法的使用/继承/super方法/多态
    redis笔记3
    甬矽电子在科创板上市:市值达到122亿元,王顺波为实际控制人
    前端开发编辑器,一轻一重两相宜
    Vue路由&nodejs环境搭建
    在agx xavier上运行 deepstream的样例 deepstream-test4
    Java每日一练
    list类型常用命令及其底层数据结构
  • 原文地址:https://blog.csdn.net/m0_51743362/article/details/127616200