C# 委托(delegate)

内容纲要

简介

委托是一个类,它定义了方法的类型,使得可以将方法当作另一个方法的参数来进行传递,这种将方法动态地赋给参数的做法,可以避免在程序中大量使用If-Else(Switch)语句,同时使得程序具有更好的可扩展性。C# 中的委托(Delegate)类似于 C 或 C++ 中函数的指针。本文主要介绍C# 委托(delegate)。

1、委托

委托(delegate)特别用于实现事件和回调方法。所有的委托(Delegate)都派生自 System.Delegate 类。委托是一种引用类型,虽然在定义委托时与方法有些相似,但不能将其称为方法。委托的使用包括定义声明委托、实例化委托以及调用委托。委托在使用时遵循三步走的原则,即定义声明委托、实例化委托以及调用委托。

2、委托声明

委托声明定义委托能引用的的方法,委托声明定义了引用的方法的参数和返回值的类型。

语法:delegate <return type> <delegate-name> <parameter list>

例如:

  1. public delegate int MyDelegate (string str);

注意:上面示例代码中,int定义的是引用方法的返回值类型,string str定义的是引用方法的参数

3、委托的使用

委托声明之后,声明的委托类型使用时,也需要使用new关键字来创建对象,并且可以与一个方法关联

例如:

  1. public delegate void FileDelegate(string str);
  2. FileDelegate fileRead = new FileDelegate(ReadFile);
  3. FileDelegate fileWrite = new FileDelegate(WriteFile);
  1. using System;
  2. delegate int Calc(int a,int b);
  3. namespace MyDelegate
  4. {
  5. class DelegateDemo
  6. {
  7. public static int Add(int a,int b)
  8. {
  9. return a+b;
  10. }
  11. public static int Minus(int a,int b)
  12. {
  13. return a-b;
  14. }
  15. public static int Mult(int a,int b)
  16. {
  17. return a*b;
  18. }
  19. static void Main(string[] args)
  20. {
  21. // 创建委托实例
  22. Calc c1 = new Calc(Add);
  23. Calc c2 = new Calc(Minus);
  24. Calc c3 = new Calc(Mult);
  25. // 使用委托对象调用方法
  26. Console.WriteLine("{0}", c1(8,2));
  27. Console.WriteLine("{0}", c2(8,2));
  28. Console.WriteLine("{0}", c3(8,2));
  29. }
  30. }
  31. }

4、委托的多播

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

例如:

  1. using System;
  2. delegate int Calc(int a,int b);
  3. namespace MyDelegate
  4. {
  5. class DelegateDemo
  6. {
  7. public static int Add(int a,int b)
  8. {
  9. Console.WriteLine(a + b);
  10. return a+b;
  11. }
  12. public static int Minus(int a,int b)
  13. {
  14. Console.WriteLine(a - b);
  15. return a-b;
  16. }
  17. public static int Mult(int a,int b)
  18. {
  19. Console.WriteLine(a * b);
  20. return a*b;
  21. }
  22. static void Main(string[] args)
  23. {
  24. // 创建委托实例
  25. Calc c;
  26. Calc c1 = new Calc(Add);
  27. Calc c2 = new Calc(Minus);
  28. Calc c3 = new Calc(Mult);
  29. c = c1;
  30. c += c2;
  31. c += c3;
  32. // 使用委托对象调用方法
  33. Console.WriteLine("{0}", c(8,2));//三个方法都执行了,返回的是最一个值
  34. }
  35. }
  36. }

5、匿名委托

匿名委托是指使用匿名方法注册在委托上,实际上是在委托中通过定义代码块来实现委托的作用。

语法:

  1. 委托名 委托对象 = delegate
  2. {
  3. //代码块
  4. };

例如:

  1. using System;
  2. delegate int Calc(int a,int b);
  3. namespace MyDelegate
  4. {
  5. class DelegateDemo
  6. {
  7. /* public static int Add(int a,int b)
  8. {
  9. Console.WriteLine(a + b);
  10. return a+b;
  11. }
  12. public static int Minus(int a,int b)
  13. {
  14. Console.WriteLine(a - b);
  15. return a-b;
  16. }
  17. public static int Mult(int a,int b)
  18. {
  19. Console.WriteLine(a * b);
  20. return a*b;
  21. }*/
  22. static void Main(string[] args)
  23. {
  24. // 创建委托实例
  25. Calc c;
  26. Calc c1 = delegate(int a,int b)
  27. {
  28. Console.WriteLine(a + b);
  29. return a+b;
  30. };
  31. Calc c2 = delegate(int a,int b)
  32. {
  33. Console.WriteLine(a - b);
  34. return a-b;
  35. };
  36. Calc c3 = delegate(int a,int b)
  37. {
  38. Console.WriteLine(a * b);
  39. return a*b;
  40. };
  41. c = c1;
  42. c += c2;
  43. c += c3;
  44. // 使用委托对象调用方法
  45. Console.WriteLine("{0}", c(4,2));//多播三个方法都执行了,返回的是最一个值
  46. }
  47. }
  48. }
C#

C# 事件(event)

2022-8-25 17:09:57

C#

C# 索引器

2022-8-25 18:16:04

0 条回复 A文章作者 M管理员
欢迎您,新朋友,感谢参与互动!
    暂无讨论,说说你的看法吧
个人中心
今日签到
私信列表
搜索