C#中的委托(二)
2018-06-23 23:54:40来源:未知 阅读 ()
一、Action<T>和Func<T>委托
除了上篇描述的为每个参数和返回类型定义一个新委托类型之外,还可以使用Action<T>和Func<T>委托。通过T的标示,我们可以知道这是两个泛型委托。
二、Action<T>
其中Action<T>委托表示引用一个void返回类型的方法。这个委托存在不同的变体,可以传递最多16种不同的参数类型。如:Action<in T1>表示调用带一个参数的方法(返回类型为void),Action<in T1,in T2>表示两个参数,Action<in T1.....in T16>表示16个参数(最多16个);在这就以上篇中数据操作类,加以改造:
public class MathOperation { public static void Add(int x, int y) { int result = x + y; Console.WriteLine("x+y={0}", result); } public static void Reduce(int x, int y) { int result = x - y; Console.WriteLine("x-y={0}", result); } public static void Process(Action<int, int> action, int x, int y) { action(x, y); } }
执行代码:
Action<int, int>[] operation = { MathOperation.Add, MathOperation.Reduce }; for (int i = 0; i < operation.Length; i++) { Console.WriteLine("执行第{0}个委托方法", i); for (int j = 1; j < 10; j++) { MathOperation.Process(operation[i], i, j); Thread.Sleep(20); } }
输出结果:
三、Func<T>
Func<T>调用带返回类型的方法。与Action<T>类似,Func<T>也定义了不同的变体,至多可以16个参数类型和一个返回类型。Func<out TResult>委托类型可以调用带返回类型且无参的方法,Func<in T,out TResult>表示带有一个参数的方法。我们继续在数据操作类上改造:
public class MathOperation { public static int Add(int x, int y) { int result = x + y; return result; } public static int Reduce(int x, int y) { int result = x - y; return result; } public static void Process(Func<int, int, int> action, int x, int y) { int result = action(x, y); Console.WriteLine("执行结果为:{0}", result); } }
执行代码:
Func<int, int,int>[] operation = { MathOperation.Add, MathOperation.Reduce }; for (int i = 0; i < operation.Length; i++) { Console.WriteLine("执行第{0}个委托方法", i); for (int j = 1; j < 10; j++) { MathOperation.Process(operation[i], i, j); Thread.Sleep(20); } }
执行结果:
四、员工工资排序实例
首先定义一个员工类
public class Empolyee { /// <summary> /// 姓名 /// </summary> public string Name { get; set; } /// <summary> /// 工资 /// </summary> public decimal Salary { get; set; } public Empolyee(string name, decimal salary) { this.Name = name; this.Salary = salary; } /// <summary> /// 重构 /// </summary> /// <returns></returns> public override string ToString() { return string.Format("{0}的工资为:{1}", Name, Salary); } /// <summary> /// 定义一个比较员工工资的静态方法(用于向通用排序类传值) /// </summary> /// <param name="e1"></param> /// <param name="e2"></param> /// <returns></returns> public static bool CompareTo(Empolyee e1, Empolyee e2) { return e1.Salary < e2.Salary; } }
然后创建一个排序类:
public class SortUtil { public static void Sort<T>(IList<T> arrList, Func<T, T, bool> compare) { ////冒泡排序 //for (int i = 0; i < arrList.Count - 1; i++) //{ // for (int j = i + 1; j < arrList.Count - 1; j++) // { // if (compare(arrList[i], arrList[j])) // { // var temp = arrList[i]; // arrList[i] = arrList[j]; // arrList[j] = temp; // } // } //} bool result = true; do { result = false; for (var i = 0; i < arrList.Count - 1; i++) { if (compare(arrList[i], arrList[i + 1])) { T temp = arrList[i]; arrList[i] = arrList[i + 1]; arrList[i + 1] = temp; result = true; } } } while (result); } }
执行代码:
Empolyee[] list = { new Empolyee("A",12.3M), new Empolyee("B",12.4M), new Empolyee("C",12.2M), new Empolyee("D",12.5M), new Empolyee("E",12.1M) }; SortUtil.Sort<Empolyee>(list, Empolyee.CompareTo); foreach (var item in list) { Console.WriteLine(item.ToString()); }
执行结果:
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- DIV居中的经典方法 2020-06-13
- CSS中的float和margin的混合使用 2020-06-11
- 循序渐进VUE+Element 前端应用开发(2)--- Vuex中的API、Sto 2020-05-25
- CSS中的一些细节 2020-04-17
- HttpServlet在第一个Servlet程序中的知识点 2020-03-28
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash