gpt4 book ai didi

java - 未找到 intValue 方法

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

I have made a programme to count the number of words using HashMap.Here it is-:


import java.util.*;
class Count{
public static void main(String args[]){
Scanner s=new Scanner(System.in);
String in=s.nextLine();
HashMap hm=new HashMap();
String sh[]=in.split(" ");
for(int i=0;i<sh.length;i++){
String key=sh[i];
if(sh[i].length() > 1){
if(hm .get(key)==null){
hm.put(key,i);
}
else{
int value=new Integer(hm.get(key).intValue());
value++;
hm.put(key,value);
}
}
}
System.out.println(hm);
}
}

但是在这个程序中,我收到错误,因为我使用的是jdk 1.6,所以找不到 .intValue() 符号,添加了自动装箱和拆箱功能,所以我想这就是问题所在。我想计算计数,所以请给出我的解决方案。

最佳答案

您应该编写这段代码。

int value=new Integer((Integer)hm.get(key)).intValue();

或者更好

int value = (Integer)hm.get(key);

关于java - 未找到 intValue 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17091203/

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