日期:2014-05-20 浏览次数:20807 次
Map<String, Integer> map = new HashMap<String, Integer>();
String str = "GGG";
Integer i = Math.random()*10 > 7? 5 : null;
System.out.println(i);
map.put(str, map.get(str)==null ? i : (map.get(str) + (i==null? 1 : i)));
if(map.get(str)==null)
map.put(str, i);
else if(i==null)
map.put(str, map.get(str)+1);
else
map.put(str, i);