public static void main(String[] args) {
int x[]={1,2,3,2,5,3,7,3,8,2,4,9,3,2,6,4};
Map map = new HashMap();
for (int i : x) {
Integer c = (Integer) map.get(i);
if( c==null)
{ map.put(i,1);} //请解释下这段代码。 谢谢
else
{map.put(i,c+1);}//请解释下这段代码。 谢谢
}
System.out.println(map);
}
}
甫艾蒽廷
相关分类