gpt4 book ai didi

java - 获取 HashMap 中具有未知键的第一个值

转载 作者:行者123 更新时间:2023-12-01 23:01:52 25 4
gpt4 key购买 nike

我想从我的 HashMap 中获取第一个值,但我不知道该值的键。是否可以?有库可以做到这一点吗?

最佳答案

您可以使用 java.util.LinkedHashMap<K, V> 。然后您可以按插入顺序迭代 map 。

要仅获取第一个条目,您可以使用迭代器:

Map<String, String > map = new LinkedHashMap<String, String >();
// ... fill the map
Entry<String, String > next = map.entrySet().iterator().next();
next.getKey();
next.getValue();

关于java - 获取 HashMap 中具有未知键的第一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23303887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com