gpt4 book ai didi

java - 为什么 getValue() 函数不适用于 HashMap?

转载 作者:行者123 更新时间:2023-11-29 04:27:28 24 4
gpt4 key购买 nike

<分区>

我正在解决一个关于在数组中查找重复项的问题。我使用了一个 HashMap。但是当我将它包含在 IF 条件中时,getValue() 函数给了我一个错误。

for(Map.Entry m : hm.entrySet())
{
if(m.getValue() > 1)
{
System.out.println(m.getKey());
}
}

但是当我使用类型转换时它似乎工作正常

for(Map.Entry m : hm.entrySet())
{
int count = (int)m.getValue();
if(count > 1)
{
System.out.println(m.getKey());
}
}

为什么会这样?

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