9
Java8: HashMap <X, Y> à HashMap <X, Z> à l'aide de Stream / Map-Reduce / Collector
Je sais comment "transformer" un simple Java à Listpartir de Y-> Z, c'est-à-dire: List<String> x; List<Integer> y = x.stream() .map(s -> Integer.parseInt(s)) .collect(Collectors.toList()); Maintenant, je voudrais faire la même chose avec une carte, c'est-à-dire: INPUT: { "key1" -> "41", // "41" and "42" "key2" -> "42 // are Strings } …