• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

使用 Java-8 Streams API 字符串列表转换为 Map

用户头像
it1352
帮助1

问题说明

我有清单

List<String> cars = Arrays.asList("Ford", "Focus", "Toyota", "Yaris","Nissan", "Micra", "Honda", "Civic");

现在,我可以使用 Java 8 Streams API 将这个列表转换为我得到 Ford = focus、Toyota = yaris、Nisan = Micra、Honda = Civic 的 Map 吗?

Now, can I convert this List into Map where I get ford = focus, Toyota = yaris, Nisan = Micra, Honda = Civic using Java 8 Streams API?

正确答案

#1

下面是一个例子:

 Map<String, String> carsMap =
            IntStream.iterate(0, i -> i   2).limit(cars.size() / 2)
                    .boxed()
                    .collect(Collectors.toMap(i -> cars.get(i), i -> cars.get(i   1)));

基本上,只需遍历每 2 个元素并将其映射到下一个元素.
注意,如果元素个数不偶数,则不会考虑最后一个元素.

Basically, just iterates over every 2 elements and maps it with the next one.
Note that if the number of elements is not even, it won't take into consideration the last element.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tangibjck
系列文章
更多 icon
同类精品
更多 icon
继续加载