Java 8 将 HashSet 转换为 HashMap
Java 8 Convert HashSet to HashMap
我正在尝试使用 lambda 和 Collectors 在 Java 8 中将 hashset
转换为 hashmap
,但我没有这样做。下面是我的代码:
Set<String> set = new HashSet<String>();
set.add("1");
set.add("2");
set.add("3");
HashMap<String, Integer> map = set.stream().collect(Collectors.toMap(x -> x, 0));
但是上面的错误如下:
The method toMap(Function<? super T,? extends K>, Function<? super T,? extends U>) in the type Collectors is not applicable for the arguments ((<no type> x) -> {}, int)
我是 lambda 的新手。有帮助吗?
有两个问题:toMap()
returns一个Map,不一定是HashMap,第二个参数需要是一个函数。
例如:
Map<String, Integer> map = set.stream().collect(Collectors.toMap(x -> x, x -> 0));
最终地图 map = set.stream()
.collect(Collectors.toMap(Function.identity(), 键 -> 0));
我正在尝试使用 lambda 和 Collectors 在 Java 8 中将 hashset
转换为 hashmap
,但我没有这样做。下面是我的代码:
Set<String> set = new HashSet<String>();
set.add("1");
set.add("2");
set.add("3");
HashMap<String, Integer> map = set.stream().collect(Collectors.toMap(x -> x, 0));
但是上面的错误如下:
The method toMap(Function<? super T,? extends K>, Function<? super T,? extends U>) in the type Collectors is not applicable for the arguments ((<no type> x) -> {}, int)
我是 lambda 的新手。有帮助吗?
有两个问题:toMap()
returns一个Map,不一定是HashMap,第二个参数需要是一个函数。
例如:
Map<String, Integer> map = set.stream().collect(Collectors.toMap(x -> x, x -> 0));
最终地图 map = set.stream() .collect(Collectors.toMap(Function.identity(), 键 -> 0));