概要
窗前明月光,疑是地上霜,舉頭望明月,低頭思故鄉(xiāng)。別誤會(huì)這是開頭詩與以下文章沒任何關(guān)系。
今天我想給大家說道說道 C# lambda表達(dá)式,不廢話,下面開始說道!lambda
lambda是什么,它不是是什么,它只是一個(gè)語法糖,看著簡單明了,寫起來簡單,對于開發(fā)人員可讀性好,還有就是省勁兒!重點(diǎn)來了:lambda就是委托的實(shí)現(xiàn)方法的簡單寫法
切記,切記,只要記住這句話,所有l(wèi)ambda表達(dá)式都好理解!什么不理解,不理解啊很正常,咱們看的例子就一下明白了。
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { //聲明委托delegateTest delegate int delegateTest(int a); static void Main(string[] args) { //實(shí)現(xiàn)委托delegateTest delegateTest tset = new delegateTest(test); //lambda實(shí)現(xiàn)方式與test方法一樣 delegateTest tset1 = new delegateTest(t => t);
} //實(shí)現(xiàn)委托delegateTest public
延伸閱讀
- ssh框架
2016-09-30
- 阿里移動(dòng)安全 [無線安全]玩轉(zhuǎn)無線電——不安全的藍(lán)牙鎖
2017-07-26
- 消息隊(duì)列NetMQ 原理分析4-Socket、Session、Option和Pipe
2024-03-26
- Selective Search for Object Recognition 論文筆記【圖片目標(biāo)分割】
2017-07-26
- 詞向量-LRWE模型-更好地識(shí)別反義詞同義詞
2017-07-26
- 從棧不平衡問題 理解 calling convention
2017-07-26
- php imagemagick 處理 圖片剪切、壓縮、合并、插入文本、背景色透明
2017-07-26
- Swift實(shí)現(xiàn)JSON轉(zhuǎn)Model - HandyJSON使用講解
2017-07-26
- 阿里移動(dòng)安全 Android端惡意鎖屏勒索應(yīng)用分析
2017-07-26
- 集合結(jié)合數(shù)據(jù)結(jié)構(gòu)來看看(二)
2017-07-26
學(xué)習(xí)是年輕人改變自己的最好方式