Các phiên bản 2 tham số củaCollectors.toMap()
sử dụng 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);
}
Để sử dụng phiên bản 4 tham số , bạn có thể thay thế:
Collectors.toMap(Function.identity(), String::length)
với:
Collectors.toMap(
Function.identity(),
String::length,
(u, v) -> {
throw new IllegalStateException(String.format("Duplicate key %s", u));
},
LinkedHashMap::new
)
Hoặc để làm cho nó gọn gàng hơn một chút, hãy viết một toLinkedMap()
phương thức mới và sử dụng:
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
vàCombiner
cho cáccollect
phương pháp của bạnstream
:)