title: 【転載】java8 リストをマップに変換、グループ化、フィルタリングなどの操作を迅速に実現
date: 2021-11-01 11:29:00
toc: true
category:
- Java
tags: - Java
- java8
- 迅速
- 実現
- リスト
- 変換
- マップ
- グループ化
- フィルタリング
- 操作
この記事は転載です:java8 リストをマップに変換、グループ化、フィルタリングなどの操作を迅速に実現_IT 小白 - CSDN ブログ_java8 リストをマップに変換
java8 の新機能を利用して、簡潔で効率的なコードでデータ処理を実現できます。
1 つの Apple オブジェクトを定義します:
public class Apple {
private Integer id;
private String name;
private BigDecimal money;
private Integer num;
public Apple(Integer id, String name, BigDecimal money, Integer num) {
this.id = id;
this.name = name;
this.money = money;
this.num = num;
}
}
いくつかのテストデータを追加します:
List<Apple> appleList = new ArrayList<>();//appleオブジェクトの集合を格納
Apple apple1 = new Apple(1,"リンゴ1",new BigDecimal("3.25"),10);
Apple apple12 = new Apple(1,"リンゴ2",new BigDecimal("1.35"),20);
Apple apple2 = new Apple(2,"バナナ",new BigDecimal("2.89"),30);
Apple apple3 = new Apple(3,"ライチ",new BigDecimal("9.99"),40);
appleList.add(apple1);
appleList.add(apple12);
appleList.add(apple2);
appleList.add(apple3);
グループ化#
リスト内のオブジェクト要素を特定の属性でグループ化します。例えば、id でグループ化し、同じ id のものをまとめます:
//リストをIDでグループ化 Map<Integer,List<Apple>>
Map<Integer, List<Apple>> groupBy = appleList.stream().collect(Collectors.groupingBy(Apple::getId));
System.err.println("groupBy:"+groupBy);
{1=[Apple{id=1, name='リンゴ1', money=3.25, num=10}, Apple{id=1, name='リンゴ2', money=1.35, num=20}], 2=[Apple{id=2, name='バナナ', money=2.89, num=30}], 3=[Apple{id=3, name='ライチ', money=9.99, num=40}]}
リストをマップに変換#
id をキー、apple オブジェクトを値とすることができます:
/**
* リスト -> マップ
* 注意が必要です:
* toMapで集合オブジェクトに重複するキーがあると、Duplicate key ....というエラーが発生します。
* apple1とapple12のidはどちらも1です。
* (k1,k2)->k1を使用して、重複するキーがある場合はkey1を保持し、key2を破棄するように設定できます。
*/
Map<Integer, Apple> appleMap = appleList.stream().collect(Collectors.toMap(Apple::getId, a -> a,(k1,k2)->k1));
appleMap を印刷します
{1=Apple{id=1, name='リンゴ1', money=3.25, num=10}, 2=Apple{id=2, name='バナナ', money=2.89, num=30}, 3=Apple{id=3, name='ライチ', money=9.99, num=40}}
フィルタリング#
集合から条件に合う要素をフィルタリングします:
//条件に合うデータをフィルタリング
List<Apple> filterList = appleList.stream().filter(a -> a.getName().equals("バナナ")).collect(Collectors.toList());
System.err.println("filterList:"+filterList);
[Apple{id=2, name='バナナ', money=2.89, num=30}]
合計#
集合内のデータを特定の属性で合計します:
//合計金額を計算
BigDecimal totalMoney = appleList.stream().map(Apple::getMoney).reduce(BigDecimal.ZERO, BigDecimal::add);
System.err.println("totalMoney:"+totalMoney); //totalMoney:17.48
ストリーム内の最大値、最小値を検索#
Collectors.maxBy と Collectors.minBy を使用して、ストリーム内の最大または最小値を計算します:
Optional<Dish> maxDish = Dish.menu.stream().
collect(Collectors.maxBy(Comparator.comparing(Dish::getCalories)));
maxDish.ifPresent(System.out::println);
Optional<Dish> minDish = Dish.menu.stream().
collect(Collectors.minBy(Comparator.comparing(Dish::getCalories)));
minDish.ifPresent(System.out::println);
重複を排除#
import static java.util.Comparator.comparingLong;
import static java.util.stream.Collectors.collectingAndThen;
import static java.util.stream.Collectors.toCollection;
// idで重複を排除
List<Person> unique = appleList.stream().collect(
collectingAndThen(
toCollection(() -> new TreeSet<>(comparingLong(Apple::getId))), ArrayList::new)
);