<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
Java 8 是一個非常成功的版本,這個版本新增的Stream,配合同版本出現的Lambda ,給我們操作集合(Collection)提供了極大的便利。Stream流是JDK8新增的成員,允許以宣告性方式處理資料集合,可以把Stream流看作是遍歷資料集合的一個高階迭代器。Stream 是 Java8 中處理集合的關鍵抽象概念,它可以指定你希望對集合進行的操作,可以執行非常複雜的查詢/篩選/過濾、排序、聚合和對映資料等操作。使用Stream API 對集合資料進行操作,就類似於使用 SQL 執行的資料庫查詢。也可以使用 Stream API 來並行執行操作。簡而言之,Stream API 提供了一種高效且易於使用的處理資料的方式。
程式碼以宣告性方式書寫,說明想要完成什麼,而不是說明如何完成一個操作。
可以把幾個基礎操作連線起來,來表達複雜的資料處理的流水線,同時保持程式碼清晰可讀。
從支援資料處理操作的源生成元素序列.資料來源可以是集合,陣列或IO資源。
從操作角度來看,流與集合是不同的. 流不儲存資料值; 流的目的是處理資料,它是關於演演算法與計算的。
如果把集合作為流的資料來源,建立流時不會導致資料流動; 如果流的終止操作需要值時,流會從集合中獲取值; 流只使用一次。
流中心思想是延遲計算,流直到需要時才計算值。
Stream可以由陣列或集合建立,對流的操作分為兩種:
中間操作,每次返回一個新的流,可以有多個。
終端操作,每個流只能進行一次終端操作,終端操作結束後流無法再次使用。終端操作會產生一個新的集合或值。
特性:
不是資料結構,不會儲存資料。
不會修改原來的資料來源,它會將操作後的資料儲存到另外一個物件中。(保留意見:畢竟peek方法可以修改流中元素)
惰性求值,流在中間處理過程中,只是對操作進行了記錄,並不會立即執行,需要等到執行終止操作的時候才會進行實際的計算。
無狀態:指元素的處理不受之前元素的影響;
有狀態:指該操作只有拿到所有元素之後才能繼續下去。
非短路操作:指必須處理所有元素才能得到最終結果;
短路操作:指遇到某些符合條件的元素就可以得到最終結果,如 A || B,只要A為true,則無需判斷B的結果。
Stream可以通過集合陣列建立。
List<String> list = Arrays.asList("a", "b", "c"); // 建立一個順序流 Stream<String> stream = list.stream(); // 建立一個並行流 Stream<String> parallelStream = list.parallelStream();
int[] array={1,3,5,6,8}; IntStream stream = Arrays.stream(array);
Stream<Integer> stream = Stream.of(1, 2, 3, 4, 5, 6); Stream<Integer> stream2 = Stream.iterate(0, (x) -> x + 3).limit(4); stream2.forEach(System.out::println); Stream<Double> stream3 = Stream.generate(Math::random).limit(3); stream3.forEach(System.out::println);
輸出結果:
0 3 6 9
0.6796156909271994
0.1914314208854283
0.8116932592396652
stream和 parallelStream的簡單區分:stream是順序流,由主執行緒按順序對流執行操作,而 parallelStream是並行流,內部以多執行緒並行執行的方式對流進行操作,但前提是流中的資料處理沒有順序要求。例如篩選集合中的奇數,兩者的處理不同之處:
如果流中的資料量足夠大,並行流可以加快處速度。
除了直接建立並行流,還可以通過 parallel()把順序流轉換成並行流:
Optional<Integer> findFirst = list.stream().parallel().filter(x->x>6).findFirst();
先貼上幾個案例,水平高超的同學可以挑戰一下:
從員工集合中篩選出salary大於8000的員工,並放置到新的集合裡。
統計員工的最高薪資、平均薪資、薪資之和。
將員工按薪資從高到低排序,同樣薪資者年齡小者在前。
將員工按性別分類,將員工按性別和地區分類,將員工按薪資是否高於8000分為兩部分。
用傳統的迭代處理也不是很難,但程式碼就顯得冗餘了,跟Stream相比高下立判。
前提:員工類
static List<Person> personList = new ArrayList<Person>(); private static void initPerson() { personList.add(new Person("張三", 8, 3000)); personList.add(new Person("李四", 18, 5000)); personList.add(new Person("王五", 28, 7000)); personList.add(new Person("孫六", 38, 9000)); }
Stream也是支援類似集合的遍歷和匹配元素的,只是 Stream中的元素是以 Optional型別存在的。Stream的遍歷、匹配非常簡單。
// import已省略,請自行新增,後面程式碼亦是 public class StreamTest { public static void main(String[] args) { List<Integer> list = Arrays.asList(7, 6, 9, 3, 8, 2, 1); // 遍歷輸出符合條件的元素 list.stream().filter(x -> x > 6).forEach(System.out::println); // 匹配第一個 Optional<Integer> findFirst = list.stream().filter(x -> x > 6).findFirst(); // 匹配任意(適用於並行流) Optional<Integer> findAny = list.parallelStream().filter(x -> x > 6).findAny(); // 是否包含符合特定條件的元素 boolean anyMatch = list.stream().anyMatch(x -> x < 6); System.out.println("匹配第一個值:" + findFirst.get()); System.out.println("匹配任意一個值:" + findAny.get()); System.out.println("是否存在大於6的值:" + anyMatch); } }
(1)篩選員工中已滿18週歲的人,並形成新的集合
/** * 篩選員工中已滿18週歲的人,並形成新的集合 * @思路 * List<Person> list = new ArrayList<Person>(); * for(Person person : personList) { * if(person.getAge() >= 18) { * list.add(person); * } * } */ private static void filter01() { initPerson(); List<Person> collect = personList.stream().filter(x -> x.getAge()>=18).collect(Collectors.toList()); System.out.println(collect); }
(2)自定義條件匹配
(1)獲取String集合中最長的元素
/** * 獲取String集合中最長的元素 * @思路 * List<String> list = Arrays.asList("zhangsan", "lisi", "wangwu", "sunliu"); * String max = ""; * int length = 0; * int tempLength = 0; * for(String str : list) { * tempLength = str.length(); * if(tempLength > length) { * length = str.length(); * max = str; * } * } * @return zhangsan */ private static void test02() { List<String> list = Arrays.asList("zhangsan", "lisi", "wangwu", "sunliu"); Comparator<? super String> comparator = Comparator.comparing(String::length); Optional<String> max = list.stream().max(comparator); System.out.println(max); }
(2)獲取Integer集合中的最大值
//獲取Integer集合中的最大值 private static void test05() { List<Integer> list = Arrays.asList(1, 17, 27, 7); Optional<Integer> max = list.stream().max(Integer::compareTo); // 自定義排序 Optional<Integer> max2 = list.stream().max(new Comparator<Integer>() { @Override public int compare(Integer o1, Integer o2) { return o1.compareTo(o2); } }); System.out.println(max2); }
//獲取員工中年齡最大的人 private static void test06() { initPerson(); Comparator<? super Person> comparator = Comparator.comparingInt(Person::getAge); Optional<Person> max = personList.stream().max(comparator); System.out.println(max); }
(3)獲取員工中年齡最大的人
(4)計算integer集合中大於10的元素的個數
map:接收一個函數作為引數,該函數會被應用到每個元素上,並將其對映成一個新的元素。
flatMap:接收一個函數作為引數,將流中的每個值都換成另一個流,然後把所有流連線成一個流。
(1)字串大寫
(2)整數陣列每個元素+3
/** * 整數陣列每個元素+3 * @思路 * List<Integer> list = Arrays.asList(1, 17, 27, 7); List<Integer> list2 = new ArrayList<Integer>(); for(Integer num : list) { list2.add(num + 3); } @return [4, 20, 30, 10] */ private static void test09() { List<Integer> list = Arrays.asList(1, 17, 27, 7); List<Integer> collect = list.stream().map(x -> x + 3).collect(Collectors.toList()); System.out.println(collect); }
(3)公司效益好,每人漲2000
/** * 公司效益好,每人漲2000 * */ private static void test10() { initPerson(); List<Person> collect = personList.stream().map(x -> { x.setAge(x.getSalary()+2000); return x; }).collect(Collectors.toList()); System.out.println(collect); }
(4)將兩個字元陣列合併成一個新的字元陣列
/** * 將兩個字元陣列合併成一個新的字元陣列 * */ private static void test11() { String[] arr = {"z, h, a, n, g", "s, a, n"}; List<String> list = Arrays.asList(arr); System.out.println(list); List<String> collect = list.stream().flatMap(x -> { String[] array = x.split(","); Stream<String> stream = Arrays.stream(array); return stream; }).collect(Collectors.toList()); System.out.println(collect); }
(5)將兩個字元陣列合併成一個新的字元陣列
/** * 將兩個字元陣列合併成一個新的字元陣列 * @return [z, h, a, n, g, s, a, n] */ private static void test11() { String[] arr = {"z, h, a, n, g", "s, a, n"}; List<String> list = Arrays.asList(arr); List<String> collect = list.stream().flatMap(x -> { String[] array = x.split(","); Stream<String> stream = Arrays.stream(array); return stream; }).collect(Collectors.toList()); System.out.println(collect); }
歸約,也稱縮減,顧名思義,是把一個流縮減成一個值,能實現對集合求和、求乘積和求最值操作。
(1)求Integer集合的元素之和、乘積和最大值
/** * 求Integer集合的元素之和、乘積和最大值 * */ private static void test13() { List<Integer> list = Arrays.asList(1, 2, 3, 4); //求和 Optional<Integer> reduce = list.stream().reduce((x,y) -> x+ y); System.out.println("求和:"+reduce); //求積 Optional<Integer> reduce2 = list.stream().reduce((x,y) -> x * y); System.out.println("求積:"+reduce2); //求最大值 Optional<Integer> reduce3 = list.stream().reduce((x,y) -> x>y?x:y); System.out.println("求最大值:"+reduce3); }
(2)求所有員工的工資之和和最高工資
/* * 求所有員工的工資之和和最高工資 */ private static void test14() { initPerson(); Optional<Integer> reduce = personList.stream().map(Person :: getSalary).reduce(Integer::sum); Optional<Integer> reduce2 = personList.stream().map(Person :: getSalary).reduce(Integer::max); System.out.println("工資之和:"+reduce); System.out.println("最高工資:"+reduce2); }
取出大於18歲的員工轉為map
/** * 取出大於18歲的員工轉為map * */ private static void test15() { initPerson(); Map<String, Person> collect = personList.stream().filter(x -> x.getAge() > 18).collect(Collectors.toMap(Person::getName, y -> y)); System.out.println(collect); }
Collectors提供了一系列用於資料統計的靜態方法:
計數: count
平均值: averagingInt、 averagingLong、 averagingDouble
最值: maxBy、 minBy
求和: summingInt、 summingLong、 summingDouble
統計以上所有: summarizingInt、 summarizingLong、 summarizingDouble
/** * 統計員工人數、平均工資、工資總額、最高工資 */ private static void test01(){ //統計員工人數 Long count = personList.stream().collect(Collectors.counting()); //求平均工資 Double average = personList.stream().collect(Collectors.averagingDouble(Person::getSalary)); //求最高工資 Optional<Integer> max = personList.stream().map(Person::getSalary).collect(Collectors.maxBy(Integer::compare)); //求工資之和 Integer sum = personList.stream().collect(Collectors.summingInt(Person::getSalary)); //一次性統計所有資訊 DoubleSummaryStatistics collect = personList.stream().collect(Collectors.summarizingDouble(Person::getSalary)); System.out.println("統計員工人數:"+count); System.out.println("求平均工資:"+average); System.out.println("求最高工資:"+max); System.out.println("求工資之和:"+sum); System.out.println("一次性統計所有資訊:"+collect); }
分割區:將stream按條件分為兩個 Map,比如員工按薪資是否高於8000分為兩部分。
分組:將集合分為多個Map,比如員工按性別分組。有單級分組和多級分組。
將員工按薪資是否高於8000分為兩部分;將員工按性別和地區分組
public class StreamTest { public static void main(String[] args) { personList.add(new Person("zhangsan",25, 3000, "male", "tieling")); personList.add(new Person("lisi",27, 5000, "male", "tieling")); personList.add(new Person("wangwu",29, 7000, "female", "tieling")); personList.add(new Person("sunliu",26, 3000, "female", "dalian")); personList.add(new Person("yinqi",27, 5000, "male", "dalian")); personList.add(new Person("guba",21, 7000, "female", "dalian")); // 將員工按薪資是否高於8000分組 Map<Boolean, List<Person>> part = personList.stream().collect(Collectors.partitioningBy(x -> x.getSalary() > 8000)); // 將員工按性別分組 Map<String, List<Person>> group = personList.stream().collect(Collectors.groupingBy(Person::getSex)); // 將員工先按性別分組,再按地區分組 Map<String, Map<String, List<Person>>> group2 = personList.stream().collect(Collectors.groupingBy(Person::getSex, Collectors.groupingBy(Person::getArea))); System.out.println("員工按薪資是否大於8000分組情況:" + part); System.out.println("員工按性別分組情況:" + group); System.out.println("員工按性別、地區:" + group2); } }
joining可以將stream中的元素用特定的連線符(沒有的話,則直接連線)連線成一個字串。
將員工按工資由高到低(工資一樣則按年齡由大到小)排序
private static void test04(){ // 按工資升序排序(自然排序) List<String> newList = personList.stream().sorted(Comparator.comparing(Person::getSalary)).map(Person::getName) .collect(Collectors.toList()); // 按工資倒序排序 List<String> newList2 = personList.stream().sorted(Comparator.comparing(Person::getSalary).reversed()) .map(Person::getName).collect(Collectors.toList()); // 先按工資再按年齡升序排序 List<String> newList3 = personList.stream() .sorted(Comparator.comparing(Person::getSalary).thenComparing(Person::getAge)).map(Person::getName) .collect(Collectors.toList()); // 先按工資再按年齡自定義排序(降序) List<String> newList4 = personList.stream().sorted((p1, p2) -> { if (p1.getSalary() == p2.getSalary()) { return p2.getAge() - p1.getAge(); } else { return p2.getSalary() - p1.getSalary(); } }).map(Person::getName).collect(Collectors.toList()); System.out.println("按工資升序排序:" + newList); System.out.println("按工資降序排序:" + newList2); System.out.println("先按工資再按年齡升序排序:" + newList3); System.out.println("先按工資再按年齡自定義降序排序:" + newList4); }
流也可以進行合併、去重、限制、跳過等操作。
private static void test05(){ String[] arr1 = { "a", "b", "c", "d" }; String[] arr2 = { "d", "e", "f", "g" }; Stream<String> stream1 = Stream.of(arr1); Stream<String> stream2 = Stream.of(arr2); // concat:合併兩個流 distinct:去重 List<String> newList = Stream.concat(stream1, stream2).distinct().collect(Collectors.toList()); // limit:限制從流中獲得前n個資料 List<Integer> collect = Stream.iterate(1, x -> x + 2).limit(10).collect(Collectors.toList()); // skip:跳過前n個資料 List<Integer> collect2 = Stream.iterate(1, x -> x + 2).skip(1).limit(5).collect(Collectors.toList()); System.out.println("流合併:" + newList); System.out.println("limit:" + collect); System.out.println("skip:" + collect2); }
//計算兩個list中的差集 List<String> reduce1 = allList.stream().filter(item -> !wList.contains(item)).collect(Collectors.toList());
到此這篇關於Java8中Stream使用方法的文章就介紹到這了,更多相關Java8 Stream用法內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45