溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何在java8中實現(xiàn)stream分組功能

發(fā)布時間:2021-05-22 16:55:49 來源:億速云 閱讀:1671 作者:Leah 欄目:編程語言

這篇文章給大家介紹如何在java8中實現(xiàn)stream分組功能,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

前言

最近,項目開發(fā)時遇到一個問題。根據(jù)業(yè)務(wù)要求,前端給后端上送的參數(shù)是一個列表(如List list),因此,后端也用了一個列表來接收。然而,等后端拿到數(shù)據(jù)后,我發(fā)現(xiàn)我需要對相同classId的數(shù)據(jù)進行統(tǒng)一處理。于是,我找到前端妹妹討論,看她能不能幫忙把相同classId的數(shù)據(jù)封裝成列表傳給我。我好將接收參數(shù)修改成以下格式(List list):

class Dto{
  String classId;
  List<Student> list;
}

這時,前端妹妹評估了下改動程度,眼淚汪汪地看著我

我瞬間明白了,我表現(xiàn)的機會到了!

我說道:這樣吧!前端不動,后端來處理!

后端不能說不行!

仔細看了下數(shù)據(jù),運用java 8 stream分組功能輕松解決。

public static void testStreamGroup(){
  List<Student> stuList = new ArrayList<Student>();
  Student stu1 = new Student("10001", "孫權(quán)", "1000101", 16, '男');
  Student stu2 = new Student("10001", "曹操", "1000102", 16, '男');
  Student stu3 = new Student("10002", "劉備", "1000201", 16, '男');
  Student stu4 = new Student("10002", "大喬", "1000202", 16, '女');
  Student stu5 = new Student("10002", "小喬", "1000203", 16, '女');
  Student stu6 = new Student("10003", "諸葛亮", "1000301", 16, '男');

  stuList.add(stu1);
  stuList.add(stu2);
  stuList.add(stu3);
  stuList.add(stu4);
  stuList.add(stu5);
  stuList.add(stu6);

  Map<String, List<Student>> collect = stuList.stream().collect(Collectors.groupingBy(Student::getClassId));
  for(Map.Entry<String, List<Student>> stuMap:collect.entrySet()){
     String classId = stuMap.getKey();
     List<Student> studentList = stuMap.getValue();
     System.out.println("classId:"+classId+",studentList:"+studentList.toString());
  }
}

classId:10002,studentList:[Student [classId=10002, name=劉備, studentId=1000201, age=16, sex=男], Student [classId=10002, name=大喬, studentId=1000202, age=16, sex=女], Student [classId=10002, name=小喬, studentId=1000203, age=16, sex=女]]
classId:10001,studentList:[Student [classId=10001, name=孫權(quán), studentId=1000101, age=16, sex=男], Student [classId=10001, name=曹操, studentId=1000102, age=16, sex=男]]
classId:10003,studentList:[Student [classId=10003, name=諸葛亮, studentId=1000301, age=16, sex=男]]

關(guān)于如何在java8中實現(xiàn)stream分組功能就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI