博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
委托的N种写法,你喜欢哪种?
阅读量:5139 次
发布时间:2019-06-13

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

一、委托调用方式

1. 最原始版本:

delegate string PlusStringHandle(string x, string y);    class Program    {        static void Main(string[] args)        {            PlusStringHandle pHandle = new PlusStringHandle(plusString);            Console.WriteLine(pHandle("abc", "edf"));            Console.Read();        }        static string plusString(string x, string y)        {            return x + y;        }    }

 2. 原始匿名函数版:去掉“plusString”方法,改为

PlusStringHandle pHandle = new PlusStringHandle(delegate(string x, string y)            {                return x + y;            });            Console.WriteLine(pHandle("abc", "edf"));

3. 使用Lambda(C#3.0+),继续去掉“plusString”方法(以下代码均不再需要该方法)

PlusStringHandle pHandle = (string x, string y) =>            {                return x + y;            };            Console.WriteLine(pHandle("abc", "edf"));

还有更甚的写法(省去参数类型)

PlusStringHandle pHandle = (x, y) =>            {                return x + y;            };            Console.WriteLine(pHandle("abc", "edf"));

如果只有一个参数

delegate void WriteStringHandle(string str);        static void Main(string[] args)        {            //如果只有一个参数            WriteStringHandle handle = p => Console.WriteLine(p);            handle("lisi");            Console.Read();        }

 

二、委托声明方式

1. 原始声明方式见上述Demo

2. 直接使用.NET Framework定义好的泛型委托 Func 与 Action ,从而省却每次都进行的委托声明。

static void Main(string[] args)        {            WritePrint
(p => Console.WriteLine("{0}是一个整数", p), 10); Console.Read(); } static void WritePrint
(Action
action, T t) { Console.WriteLine("类型为:{0},值为:{1}", t.GetType(), t); action(t); }

3. 再加上个扩展方法,就能搞成所谓的“链式编程”啦。

class Program    {           static void Main(string[] args)        {            string str = "所有童鞋:".plusString(p => p = p + " girl: lisi、lili\r\n").plusString(p => p + "boy: wangwu") ;            Console.WriteLine(str);            Console.Read();        }    }    static class Extentions    {        public static string plusString
(this TParam source, Func
func) { Console.WriteLine("字符串相加前原值为:{0}。。。。。。", source); return func(source); } }

看这个代码是不是和我们平时写的"list.Where(p => p.Age > 18)"很像呢?没错Where等方法就是使用类似的方式来实现的。

好了,我总结完了,如有遗漏,还望补上,臣不尽感激。

转载于:https://www.cnblogs.com/FreeDong/p/3227638.html

你可能感兴趣的文章
少年的烦恼
查看>>
使用定时器制作雪花动画
查看>>
英文邮件常用句型汇总2
查看>>
html+css:将有关系的域组成一组
查看>>
Spring学习笔记--注入Bean属性
查看>>
2019春第二次课程设计实验报告
查看>>
mybatis配置文件xml中插入新数据
查看>>
获取指定文件下的所有file文件
查看>>
Character类--字符操作
查看>>
有序数组的二分查找
查看>>
php性能优化
查看>>
1.9 Android
查看>>
分布式系统中接口的幂等性(转)
查看>>
c语言第三次博客作业
查看>>
mybatis 乐观锁和逻辑删除
查看>>
PAT 1055. 集体照 (25)
查看>>
python(wordcloud)实现中文词云
查看>>
JQuery AJAX请求分类示例
查看>>
Python Numpy数组保存
查看>>
同一个中断正在执行中还会重入么
查看>>