의 2 개 매개 변수 버전은 다음을Collectors.toMap()
사용합니다 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 개 매개 변수 버전 을 사용하려면 다음을 대체 할 수 있습니다.
Collectors.toMap(Function.identity(), String::length)
와:
Collectors.toMap(
Function.identity(),
String::length,
(u, v) -> {
throw new IllegalStateException(String.format("Duplicate key %s", u));
},
LinkedHashMap::new
)
또는 좀 더 깔끔하게 만들려면 새 toLinkedMap()
메서드를 작성하고 다음을 사용하십시오.
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
그리고Combiner
에 대한collect
당신의 방법stream
: