2-parametreli versiyonuCollectors.toMap()
bir kullanır HashMap
:
public static <T, K, U> Collector<T, ?, Map<K,U>> toMap(
Function<? super T, ? extends K> keyMapper,
Function<? super T, ? extends U> valueMapper)
{
return toMap(keyMapper, valueMapper, throwingMerger(), HashMap::new);
}
4 parametreli versiyonu kullanmak için şunları değiştirebilirsiniz:
Collectors.toMap(Function.identity(), String::length)
ile:
Collectors.toMap(
Function.identity(),
String::length,
(u, v) -> {
throw new IllegalStateException(String.format("Duplicate key %s", u));
},
LinkedHashMap::new
)
Ya da biraz daha temiz hale getirmek için yeni bir toLinkedMap()
yöntem yazın ve bunu kullanın:
public class MoreCollectors
{
public static <T, K, U> Collector<T, ?, Map<K,U>> toLinkedMap(
Function<? super T, ? extends K> keyMapper,
Function<? super T, ? extends U> valueMapper)
{
return Collectors.toMap(
keyMapper,
valueMapper,
(u, v) -> {
throw new IllegalStateException(String.format("Duplicate key %s", u));
},
LinkedHashMap::new
);
}
}
Supplier
,Accumulator
veCombiner
içincollect
senin yönteminestream
:)