1. ホーム

[解決済み】Java8: HashMap<X, Y> から HashMap<X, Z> へ Stream / Map-Reduce / Collector を使って変換する。

2022-04-01 13:18:06

質問

単純なJavaのアプリケーションを変換する方法は知っています。 List から Y -> Z は、すなわち

List<String> x;
List<Integer> y = x.stream()
        .map(s -> Integer.parseInt(s))
        .collect(Collectors.toList());

さて、基本的に同じことをMapでやってみたい。

INPUT:
{
  "key1" -> "41",    // "41" and "42"
  "key2" -> "42"      // are Strings
}

OUTPUT:
{
  "key1" -> 41,      // 41 and 42
  "key2" -> 42       // are Integers
}

に限定した解決策であってはならない。 String -> Integer . と同じように List の例では、任意のメソッド (またはコンストラクタ) を呼び出したいと思います。

どのように解決するのですか?

Map<String, String> x;
Map<String, Integer> y =
    x.entrySet().stream()
        .collect(Collectors.toMap(
            e -> e.getKey(),
            e -> Integer.parseInt(e.getValue())
        ));

リストのコードと比べると、かなりいい加減です。新しい Map.Entry の中にある map() を呼び出すと、その作業が collect() を呼び出します。