ChatGPT解决这个技术问题 Extra ChatGPT

Java 8 List<V> 到 Map<K, V>

我想使用 Java 8 的流和 lambda 将对象列表转换为地图。

这就是我在 Java 7 及更低版本中编写它的方式。

private Map<String, Choice> nameMap(List<Choice> choices) {
        final Map<String, Choice> hashMap = new HashMap<>();
        for (final Choice choice : choices) {
            hashMap.put(choice.getName(), choice);
        }
        return hashMap;
}

我可以使用 Java 8 和 Guava 轻松完成此操作,但我想知道如何在没有 Guava 的情况下完成此操作。

在番石榴中:

private Map<String, Choice> nameMap(List<Choice> choices) {
    return Maps.uniqueIndex(choices, new Function<Choice, String>() {

        @Override
        public String apply(final Choice input) {
            return input.getName();
        }
    });
}

以及带有 Java 8 lambda 的 Guava。

private Map<String, Choice> nameMap(List<Choice> choices) {
    return Maps.uniqueIndex(choices, Choice::getName);
}

A
Alexis C.

基于 Collectors documentation,它很简单:

Map<String, Choice> result =
    choices.stream().collect(Collectors.toMap(Choice::getName,
                                              Function.identity()));

附带说明一下,即使在 Java 8 之后,JDK 仍然无法参加简洁竞赛。 Guava 替代方案看起来非常易读:Maps.uniqueIndex(choices, Choice::getName)
使用 JOOL 库中的(静态导入的)Seq(我向任何使用 Java 8 的人推荐),您还可以通过以下方式提高简洁性:seq(choices).toMap(Choice::getName)
使用 Function.identity 有什么好处吗?我的意思是,它->它更短
@shabunc 我不知道有什么好处,实际上我自己使用 it -> it。此处使用 Function.identity() 主要是因为它在参考文档中使用过,这就是我在撰写本文时对 lambdas 的全部了解
@zapl,哦,事实证明这背后是有原因的 - stackoverflow.com/questions/28032827/…
s
stkent

如果您的键保证对于列表中的所有元素都是唯一的,则应将其转换为 Map<String, List<Choice>> 而不是 Map<String, Choice>

Map<String, List<Choice>> result =
 choices.stream().collect(Collectors.groupingBy(Choice::getName));

这实际上为您提供了 Map> 处理非唯一键的可能性,但这不是 OP 所要求的。在 Guava 中,如果这是您想要的,Multimaps.index(choices, Choice::getName) 可能是一个更好的选择。
或者更确切地说,使用 Guava 的 Multimap 在相同键映射到多个值的情况下非常方便。 Guava 中有多种实用方法可以方便地使用此类数据结构,而不是创建 Map>
@RichardNichols 为什么 guava Multimaps 方法是更好的选择?这可能会带来不便,因为它不返回 Map 对象。
@RichardNichols 它可能不是 OP 所要求的,但我正在寻找这个并且很高兴这个答案存在!
O
Oleksandr Pyrohov

使用 getName() 作为键,使用 Choice 本身作为映射的值:

Map<String, Choice> result =
    choices.stream().collect(Collectors.toMap(Choice::getName, c -> c));

请写一些描述,以便用户理解。
真的太糟糕了,这里没有更多细节,因为我最喜欢这个答案。
Collectors.toMap(Choice::getName,c->c)(短 2 个字符)
它等于 choices.stream().collect(Collectors.toMap(choice -> choice.getName(),choice -> choice)); 键的第一个函数,值的第二个函数
我知道查看和理解 c -> c 是多么容易,但 Function.identity() 包含更多语义信息。我通常使用静态导入,这样我就可以使用 identity()
S
Sahil Chhabra

列出的大多数答案都漏掉了列表中有重复项的情况。在这种情况下,答案将抛出 IllegalStateException。请参考以下代码处理重复列表

public Map<String, Choice> convertListToMap(List<Choice> choices) {
    return choices.stream()
        .collect(Collectors.toMap(Choice::getName, choice -> choice,
            (oldValue, newValue) -> newValue));
  }

E
Emre Colak

如果您不想使用 Collectors.toMap() 这是另一个

Map<String, Choice> result =
   choices.stream().collect(HashMap<String, Choice>::new, 
                           (m, c) -> m.put(c.getName(), c),
                           (m, u) -> {});

如您在上面的示例中所示,使用 Collectors.toMap() 或我们自己的 HashMap 哪个更好?
此示例提供了如何在地图中放置其他内容的示例。我想要一个方法调用没有提供的值。谢谢!
第三个参数函数不正确。在那里你应该提供一些函数来合并两个 Hashmap,比如 Hashmap::putAll
R
Renukeswar

简单的另一种选择

Map<String,Choice> map = new HashMap<>();
choices.forEach(e->map.put(e.getName(),e));

使用此类型或 java 7 类型没有可行的区别。
SO询问了Java 8 Streams。
S
Sahil Chhabra

例如,如果要将对象字段转换为映射:

示例对象:

class Item{
        private String code;
        private String name;

        public Item(String code, String name) {
            this.code = code;
            this.name = name;
        }

        //getters and setters
    }

并操作将列表转换为地图:

List<Item> list = new ArrayList<>();
list.add(new Item("code1", "name1"));
list.add(new Item("code2", "name2"));

Map<String,String> map = list.stream()
     .collect(Collectors.toMap(Item::getCode, Item::getName));

J
John McClean

如果您不介意使用第 3 方库,AOL 的 cyclops-react 库(披露我是贡献者)具有所有 JDK Collection 类型的扩展,包括 ListMap

ListX<Choices> choices;
Map<String, Choice> map = choices.toMap(c-> c.getName(),c->c);

V
Vikas Suryawanshi

您可以使用 IntStream 创建索引的 Stream ,然后将它们转换为 Map :

Map<Integer,Item> map = 
IntStream.range(0,items.size())
         .boxed()
         .collect(Collectors.toMap (i -> i, i -> items.get(i)));

这不是一个好的选择,因为您对每个元素都执行 get() 调用,因此会增加操作的复杂性(如果 items 是哈希图,则为 o(n * k))。
哈希图 O(1) 上的 get(i) 不是吗?
@IvovanderVeeken 代码片段中的 get(i) 在列表中,而不是在地图上。
@Zaki 我在谈论 Nicolas 的评论。如果 items 是哈希图而不是列表,我看不到 n*k 复杂性。
i
iZian

我试图这样做并发现,使用上面的答案,当使用 Functions.identity() 作为 Map 的键时,由于输入问题,我在使用像 this::localMethodName 这样的本地方法来实际工作时遇到问题。

在这种情况下,Functions.identity() 实际上对打字做了一些事情,因此该方法只能通过返回 Object 并接受 Object 的参数来工作

为了解决这个问题,我最终放弃了 Functions.identity() 并改用了 s->s

所以我的代码,在我的例子中列出了一个目录中的所有目录,并且每个目录都使用目录的名称作为映射的键,然后使用目录名称调用一个方法并返回一个项目集合,如下所示:

Map<String, Collection<ItemType>> items = Arrays.stream(itemFilesDir.listFiles(File::isDirectory))
.map(File::getName)
.collect(Collectors.toMap(s->s, this::retrieveBrandItems));

g
grep

我将编写如何使用泛型和控制反转将列表转换为映射。只是万能的方法!

也许我们有整数列表或对象列表。所以问题如下:地图的关键应该是什么?

创建接口

public interface KeyFinder<K, E> {
    K getKey(E e);
}

现在使用控制反转:

  static <K, E> Map<K, E> listToMap(List<E> list, KeyFinder<K, E> finder) {
        return  list.stream().collect(Collectors.toMap(e -> finder.getKey(e) , e -> e));
    }

例如,如果我们有 book 的对象,这个类就是为地图选择键

public class BookKeyFinder implements KeyFinder<Long, Book> {
    @Override
    public Long getKey(Book e) {
        return e.getPrice()
    }
}

u
user2069723

我使用这种语法

Map<Integer, List<Choice>> choiceMap = 
choices.stream().collect(Collectors.groupingBy(choice -> choice.getName()));

groupingBy 创建的是 Map<K,List<V>>,而不是 Map<K,V>
Dup of ulises 回答。并且,String getName();(不是整数)
T
Tunaki
Map<String, Set<String>> collect = Arrays.asList(Locale.getAvailableLocales()).stream().collect(Collectors
                .toMap(l -> l.getDisplayCountry(), l -> Collections.singleton(l.getDisplayLanguage())));

r
raja emani

这可以通过两种方式完成。让 person 成为我们将用来演示它的类。

public class Person {

    private String name;
    private int age;

    public String getAge() {
        return age;
    }
}

设 people 为要转换为地图的 Person 列表

1.在列表中使用简单的 foreach 和 Lambda 表达式

Map<Integer,List<Person>> mapPersons = new HashMap<>();
persons.forEach(p->mapPersons.put(p.getAge(),p));

2.在给定列表上定义的流上使用收集器。

 Map<Integer,List<Person>> mapPersons = 
           persons.stream().collect(Collectors.groupingBy(Person::getAge));

K
Konrad Borowski

可以使用流来执行此操作。要消除显式使用 Collectors 的需要,可以静态导入 toMap(如 Effective Java 第三版所推荐的那样)。

import static java.util.stream.Collectors.toMap;

private static Map<String, Choice> nameMap(List<Choice> choices) {
    return choices.stream().collect(toMap(Choice::getName, it -> it));
}

L
L. G.

另一种可能只出现在评论中:

Map<String, Choice> result =
choices.stream().collect(Collectors.toMap(c -> c.getName(), c -> c)));

如果您想使用子对象的参数作为键,这很有用:

Map<String, Choice> result =
choices.stream().collect(Collectors.toMap(c -> c.getUser().getName(), c -> c)));

u
user_3380739

这是StreamEx的解决方案

StreamEx.of(choices).toMap(Choice::getName, c -> c);

R
Rajeev Akotkar
Map<String,Choice> map=list.stream().collect(Collectors.toMap(Choice::getName, s->s));

甚至为我服务,

Map<String,Choice> map=  list1.stream().collect(()-> new HashMap<String,Choice>(), 
            (r,s) -> r.put(s.getString(),s),(r,s) -> r.putAll(s));

I
Ihor Sakailiuk

如果必须覆盖相同键名的每个新值:

public Map < String, Choice > convertListToMap(List < Choice > choices) {
    return choices.stream()
        .collect(Collectors.toMap(Choice::getName,
            Function.identity(),
            (oldValue, newValue) - > newValue));
}

如果所有选项都必须分组在一个名称列表中:

public Map < String, Choice > convertListToMap(List < Choice > choices) {
    return choices.stream().collect(Collectors.groupingBy(Choice::getName));
}

D
Dino
List<V> choices; // your list
Map<K,V> result = choices.stream().collect(Collectors.toMap(choice::getKey(),choice));
//assuming class "V" has a method to get the key, this method must handle case of duplicates too and provide a unique key.

F
Frank Neblung

作为 guava 的替代品,可以使用 kotlin-stdlib

private Map<String, Choice> nameMap(List<Choice> choices) {
    return CollectionsKt.associateBy(choices, Choice::getName);
}

K
Karthikeyan
String array[] = {"ASDFASDFASDF","AA", "BBB", "CCCC", "DD", "EEDDDAD"};
    List<String> list = Arrays.asList(array);
    Map<Integer, String> map = list.stream()
            .collect(Collectors.toMap(s -> s.length(), s -> s, (x, y) -> {
                System.out.println("Dublicate key" + x);
                return x;
            },()-> new TreeMap<>((s1,s2)->s2.compareTo(s1))));
    System.out.println(map);

复制密钥 AA

{12=ASDFASDFASDF, 7=EEDDDAD, 4=CCCC, 3=BBB, 2=AA}

你想在这里做什么?你读过这个问题吗?