這篇文章主要介紹了java lamda表達(dá)式用法總結(jié),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
十載建站經(jīng)驗(yàn), 網(wǎng)站制作、成都網(wǎng)站建設(shè)客戶的見(jiàn)證與正確選擇。成都創(chuàng)新互聯(lián)公司提供完善的營(yíng)銷(xiāo)型網(wǎng)頁(yè)建站明細(xì)報(bào)價(jià)表。后期開(kāi)發(fā)更加便捷高效,我們致力于追求更美、更快、更規(guī)范。
1、什么是函數(shù)式編程(百度百科上的解釋?zhuān)?/strong>
2、為什么要使用函數(shù)式編程(有什么好處)
1、代碼簡(jiǎn)潔,減少代碼量
2、接近自然語(yǔ)言,容易理解
傳統(tǒng)實(shí)現(xiàn)分組
List<Student> students; Map<String,List<Student>> maps = Maps.newHashMap(); for(Student student : students){ List<Student> studentList = students.getOrDefault(student.getSex(), Lists.newArrayList()); studentList.add(student); maps.put(student.getSex(), studentList); }
使用lambda表達(dá)式
Map<String, List<Student>> maps = student.stream.collect(Collerctor.groupBy(Student :: getSex));
3、很好實(shí)現(xiàn)并發(fā)處理
3、什么是lambda表達(dá)式
1、方法體為表達(dá)式,使用return將表達(dá)結(jié)果返回回去
(paramates)-> expression
(a, b) -> return a + b
2、方法體為代碼塊,必須用{}包含起來(lái),且需要使用return返回值,但是如果代碼塊返回的是void,那么不需要返回值
(parameter) -> {statements;}
(int a) -> (System.out.println(a))
(int a) -> (return a*a);
4、lambda的底層實(shí)現(xiàn)
BinaryOperator binaryOperator = (int a, int b) -> {return a + b;}; if(binaryOperator instanceof BinaryOperator){System.out.println(binaryOperator.getClass());} int sum = binaryOperator.applyAsInt(2,3); System.out.println(sum);
可以看出來(lái)binaryOperator其實(shí)是繼承BinaryOperator的一個(gè)匿名內(nèi)部類(lèi)
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
本文標(biāo)題:javalambda表達(dá)式用法總結(jié)
URL標(biāo)題:http://vcdvsql.cn/article48/jhggep.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、定制網(wǎng)站、網(wǎng)站維護(hù)、網(wǎng)站設(shè)計(jì)公司、面包屑導(dǎo)航、ChatGPT
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)