gpt4 book ai didi

java - HashMap#entrySet 抛出 ArrayStoreException

转载 作者:行者123 更新时间:2023-11-29 08:42:29 26 4
gpt4 key购买 nike

// channels is a HashMap<String,Channel>
for (Channel channel : channels.entrySet().toArray(new Channel[channels.entrySet().size()])) {
// stuff
}

抛出 ArrayStoreException。为什么?

最佳答案

entrySet()返回 Set<Map.Entry<K,V>> , 所以你不能产生 Channel来自它的数组。

您实际上不需要创建数组来迭代 Channel值。只需使用 values() :

for (Channel channel : channels.values()) {
// stuff
}

关于java - HashMap#entrySet 抛出 ArrayStoreException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39073653/

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