首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2SE开发 >

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

2012-05-13 
为什么不能直接new HashMapkey, value().put(key, value)???Java codeMapLong, Double map new Hash

为什么不能直接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……

热点排行
Bad Request.