博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.Net 委托 delegate 学习
阅读量:6172 次
发布时间:2019-06-21

本文共 4944 字,大约阅读时间需要 16 分钟。

一、什么是委托:
委托是寻址方法的.NET版本,使用委托可以将方法作为参数进行传递。委托是一种特殊类型的对象,其特殊之处在于委托中包含的只是一个活多个方法的地址,而不是数据。
 
二、使用委托: 关键字:delegate
1.声明:
      public delegate void DoNothing();//定义一个无返回值,无参数的委托
     public delegate int GetNum(int i); //定义有一个返回值int ,参数int 的委托
2.创建方法:
public static void DoSome()//无参无返回值的方法
{
Console.WriteLine("DoSome");
}
public static int TotalNum(int num)//有一个返回值int ,参数int 的方法
{
return num * num;
}
 
3.注册委托:
DoNothing doNothing = new DoNothing(DoSome);
//或者直接写出DoNothing doNothing = DoSome;
 
GetNum getNum = AddNum;//注册委托
 
4.执行委托
doNothing.Invoke();//执行委托  也可以直接 doNothing();
Console.WriteLine(getNum.Invoke(10));//执行委托并且打印
 
三、委托的意义
传递方法;把方法包裹起来, 传递逻辑。异步多线程执行
 
四、.net framework3.5之后,系统定义好了2个委托,开发尽量使用框架自带委托,尽量使用Action和Func
Action 无返回值委托,Func 有返回值委托
 
Action要使用参数,就写Action<int,string,double> 最多可以到16个
 
Func要使用参数,就写成Func<int,string,double> 最多可以到17个, 最后一个为返回值,现在这个返回的就是double类型
 
Action act = DoSome;//Action 无返回值委托
act.Invoke();
 
 Func<int,int> func = new Func<int,int>(TotalNum)  ;
func(10);
 
 
五、多播委托
Action doSome = new Action(DoSome);
doSome += new Action(DoSome);
doSome += DoSome;
 
doSome();//按顺序执行,最后结果是执行3次DoSome方法
 
doSome -= DoSome;//减少一次DoSome执行
 
doSome();//按顺序执行,最后结果是执行2次DoSome方法
 
多播委托,按顺序执行,多播委托,用Action, Func带返回值的只执行完后,只得到最后一个结果,所以没有意义。
 
委托使用案例:一个学生类,一个学生管理静态类,可以通过委托,实现学生集合的筛选
public class Student    {        public int Id { get; set; }        public string Name { get; set; }        public int ClassId { get; set; }        public int Age { get; set; }    }    public static  class StudentManager    {        public static List
students = new List
() { new Student(){ Id=1,Name="张三",ClassId=1001,Age=15 }, new Student(){ Id=2,Name="李四",ClassId=1001,Age=15 }, new Student(){ Id=3,Name="王五",ClassId=1001,Age=15 }, new Student(){ Id=4,Name="赵六",ClassId=1001,Age=15 }, new Student(){ Id=5,Name="杨幂",ClassId=1001,Age=14 }, new Student(){ Id=6,Name="范冰冰",ClassId=101,Age=14 }, new Student(){ Id=7,Name="张学友",ClassId=1021,Age=14}, new Student(){ Id=8,Name="张三1",ClassId=1021,Age=16 }, new Student(){ Id=9,Name="张三2",ClassId=1001,Age=17 }, new Student(){ Id=10,Name="张三3",ClassId=1001,Age=15 }, new Student(){ Id=11,Name="张三4",ClassId=1001,Age=19 }, new Student(){ Id=12,Name="张三5",ClassId=1001,Age=25 }, new Student(){ Id=13,Name="张三6",ClassId=1003,Age=25 }, new Student(){ Id=14,Name="张三7",ClassId=1003,Age=25 }, new Student(){ Id=15,Name="张三8",ClassId=1003,Age=25 }, new Student(){ Id=16,Name="张三9",ClassId=1003,Age=25 }, new Student(){ Id=17,Name="张三0",ClassId=1003,Age=25 }, new Student(){ Id=18,Name="张三11",ClassId=1003,Age=15 }, new Student(){ Id=19,Name="张三a",ClassId=1011,Age=15 }, new Student(){ Id=20,Name="张三b",ClassId=1011,Age=15 }, new Student(){ Id=21,Name="张三c",ClassId=1011,Age=15 }, new Student(){ Id=22,Name="张三d",ClassId=1011,Age=15 }, new Student(){ Id=23,Name="张三e",ClassId=1011,Age=15 }, new Student(){ Id=24,Name="张三f",ClassId=1011,Age=15 }, new Student(){ Id=25,Name="张三g",ClassId=3001,Age=15 }, new Student(){ Id=26,Name="张三h",ClassId=3001,Age=13 }, new Student(){ Id=27,Name="张三i",ClassId=3001,Age=13 }, new Student(){ Id=28,Name="张三j",ClassId=3001,Age=13 }, new Student(){ Id=29,Name="张三k",ClassId=3001,Age=13 }, }; public static List
FindStudents(Func
func) { List
stus = new List
(); foreach (var item in students) { if (func(item)) { stus.Add(item); } } return stus; } ///
/// 查找ClassId为3001的学生 /// ///
学生 ///
是否为3001班级的学生
public static bool GetClassId(Student student) { if (student.ClassId==3001) { return true; } return false; } ///
/// 年龄大于20的学生 /// ///
///
public static bool GetBigAge(Student student) { if (student.Age>20) { return true; } return false; } ///
/// 年龄大于15 并且ClassId为1021 /// ///
///
public static bool GetStuByClassIdAndAge(Student student) { if (student.Age > 15 && student.ClassId==1021) { return true; } return false; } }

下面这个是在Main方法中执行查询学生

//List
stus = StudentManager.students; //Console.WriteLine("姓名---年龄---班级--编号"); //foreach (var item in stus) //{ // Console.WriteLine(item.Name+"---"+item.Age+"---"+item.ClassId+"---"+item.Id); //} List
stus1= StudentManager.FindStudents(StudentManager.GetStuByClassIdAndAge); Console.WriteLine("姓名---年龄---班级--编号"); foreach (var item in stus1) { Console.WriteLine(item.Name + "---" + item.Age + "---" + item.ClassId + "---" + item.Id); }

 


转载于:https://www.cnblogs.com/Rookieflying/p/10386198.html

你可能感兴趣的文章
Flask开发系列之快速入门
查看>>
关于SaveChanges
查看>>
php7扩展开发 一 获取参数
查看>>
处女座与复读机
查看>>
Laravel 5.2数据库--迁移migration
查看>>
ExtJs Extender controls 不错的例子
查看>>
html的基础知识
查看>>
Mybatis Sql片段的应用
查看>>
突发奇想20150126
查看>>
Nginx + CGI/FastCGI + C/Cpp
查看>>
学习笔记------jsp页面与jsp标记
查看>>
DS博客作业02--线性表
查看>>
第三届ACM山东省赛I题_Chess_STL
查看>>
jQuery each和js forEach用法比较
查看>>
前端笔记-作用域链的一些理解加记录(JS高级程序设计读书笔记1)
查看>>
改造你的网站,变身 PWA
查看>>
Leetcode 142. Linked List Cycle IIJAVA语言
查看>>
网络基础5
查看>>
Exchange Supported operating system platforms
查看>>
unity3鼠标点击移动
查看>>