gpt4 book ai didi

Java Hashmap迭代获取KeySet

转载 作者:太空宇宙 更新时间:2023-11-04 14:12:33 25 4
gpt4 key购买 nike

因此,在我的 Java 程序中,当程序即将关闭时,我会循环遍历整个 Hashmap,将键和值存储到文件中。

我想知道如何获取key,目前它循环遍历Hashmap并且只获取值。

有问题的代码:

public HashMap<String, Integer> timers = new HashMap<String, Integer>();       
for(int times : timers.values()){
int playerTime = times;
}

最佳答案

试试这个

    for (Entry<String, Integer> e : timers.entrySet()) {
String key = e.getKey();
Integer value = e.getValue();
}

关于Java Hashmap迭代获取KeySet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28133671/

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