Map<String, ? extends MyClass> map;//instantiate and put values somewhere
Map<String, MyClass> map2; //instantiate and put values somewhere.
鉴于以上地图,如何使用map
从map2
转移到map2
,以及如何从map
转移到putAll()
,或实现{{1 }}效果?
如果我知道班级为putAll()
,可以以某种方式将其强制转换为InstanceClass
吗?