当前位置: 代码迷 >> J2SE >> 为什么不能直接new HashMap<key, value>().put(key, value)?该如何解决
  详细解决方案

为什么不能直接new HashMap<key, value>().put(key, value)?该如何解决

热度:524   发布时间:2016-04-24 01:05:18.0
为什么不能直接new HashMap<key, value>().put(key, value)???
Java code
Map<Long, Double> map = new HashMap<Long, Double>().put(11L, 22D);//compile errorMap<Long, Double> map = new HashMap<Long, Double>();map.put(11L, 22D);//correct

提示:
Type mismatch: cannot convert from Double to Map<Long,Double>
怎么识别成Double去了

------解决方案--------------------
探讨
Java code

Map<Long, Double> map = new HashMap<Long, Double>().put(11L, 22D);//compile error

Map<Long, Double> map = new HashMap<Long, Double>();
map.put(11L, 22D);//correct


提示:
Type mismatch: c……
  相关解决方案