看看下面的哪里错误?

 package bjsxt.com.map;

 class MapDemo01 
{

public  static  void  main(String[]   args)
{
String[]   arr="this  is  a  cat and  that  is  a  mice  and  where  is   the  food? ".split("regex");


  

Map<String,Integer>  map=new  HashMap<String,Integer>();


for(String  key:arr)
{
if(!map.containskey(key))
{
map.put(key,new  Letter(key));
}
Letter  value=map.get(key);
value.setCount(value.getCount()+1);

}
for(String  key:map.keySet())
{
Letter  value=map.get(key);
System.out.println(key+"-->"+value.getCount());
}

}

}
spacer.gif


qq_丘比特_0
浏览 1238回答 1
1回答

littleOStar

你的Letter类是什么?请具体说明, 要不然没法判断你哪里错了
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java