标签: java generics collections generic-collections java-api
可能重复: What are the reasons why Map.get(Object key) is not (fully) generic
http://docs.oracle.com/javase/1.5.0/docs/api/java/util/AbstractMap.html
例如,put方法采用K类型的键和类型V的值。但get方法只使用Object类型的键。采取K类型的东西是否有意义?
put
K
V
get
Object