這篇文章主要講解了“java8新特性stream有什么作用”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“java8新特性stream有什么作用”吧!
“只有客戶發(fā)展了,才有我們的生存與發(fā)展!”這是創(chuàng)新互聯(lián)的服務(wù)宗旨!把網(wǎng)站當(dāng)作互聯(lián)網(wǎng)產(chǎn)品,產(chǎn)品思維更注重全局思維、需求分析和迭代思維,在網(wǎng)站建設(shè)中就是為了建設(shè)一個(gè)不僅審美在線,而且實(shí)用性極高的網(wǎng)站。創(chuàng)新互聯(lián)對(duì)成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、網(wǎng)站開發(fā)、網(wǎng)頁設(shè)計(jì)、網(wǎng)站優(yōu)化、網(wǎng)絡(luò)推廣、探索永無止境。
前面lumbda表達(dá)式,方法引用,那么和java格格不入的寫法有什么用呢?答案就是和java8的另一個(gè)新特性stream配合使用。
java操作集合的方法弱的一*,你想從list中篩選出想要的數(shù)據(jù)怎么辦?新建一個(gè)集合,foreach源集合,把符合的填入新集合,return。stream流給我們提供了一種簡便的方法。
static List<String> strings = Arrays.asList("abc", "", "bc", "efg", "abcd","", "jkl","abc");
//通用方法 strings.stream();//轉(zhuǎn)換成流 strings.stream().collect(Collectors.toList()); //collect 轉(zhuǎn)換回去,Collectors.toList()參數(shù)轉(zhuǎn)換成list strings.stream().distinct();//去重 //foreach 循環(huán) // strings.stream().forEach(System.out::println); // strings.stream().forEach(data->{ // System.out.println(data+"--------lambda"); // }); // //filter 過濾 // List<String> list= strings.stream().filter(s -> s.contains("a")).collect(Collectors.toList()); // list.stream().forEach(System.out::println); // //map 映射 操作數(shù)據(jù)后再賦值到原來的位置 // List<String> list= strings.stream().map(s -> s+"映射后").distinct().collect(Collectors.toList());; // list.stream().forEach(System.out::println); //limit限制個(gè)數(shù) 從頭開始。 // Random random = new Random(); // random.ints().limit(10).forEach(System.out::println); // strings.stream().limit(3).forEach(System.out::println); //sorted 排序 // strings.stream().sorted().forEach(System.out::println); strings.stream().sorted(Comparator.reverseOrder()).forEach(System.out::println);//倒敘 //聚合 // List<String>strings = Arrays.asList("abc", "", "bc", "efg", "abcd","", "jkl"); // List<String> filtered = strings.stream().filter(string -> !string.isEmpty()).collect(Collectors.toList()); // // System.out.println("篩選列表: " + filtered); // String mergedString = strings.stream().filter(string -> !string.isEmpty()).collect(Collectors.joining(", ")); // System.out.println("合并字符串: " + mergedString); //統(tǒng)計(jì) // List<Integer> numbers = Arrays.asList(3, 2, 2, 3, 7, 3, 5); // // IntSummaryStatistics stats = numbers.stream().mapToInt((x) -> x).summaryStatistics(); // // System.out.println("列表中最大的數(shù) : " + stats.getMax()); // System.out.println("列表中最小的數(shù) : " + stats.getMin()); // System.out.println("所有數(shù)之和 : " + stats.getSum()); // System.out.println("平均數(shù) : " + stats.getAverage());
感謝各位的閱讀,以上就是“java8新特性stream有什么作用”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)java8新特性stream有什么作用這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
標(biāo)題名稱:java8新特性stream有什么作用
URL標(biāo)題:http://jinyejixie.com/article28/pdcpcp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供標(biāo)簽優(yōu)化、虛擬主機(jī)、品牌網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)
聲明:本網(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í)需注明來源: 創(chuàng)新互聯(lián)