作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 hashMap,其中键是 String ,值可以是 Integer 或 long 。现在,在一个方法中,我正在创建此 HashMap 并将其传递给其他方法,例如
methodA(long a,Integer b)
{
Map<String,? super Number> hm = new HashMap<>();
hm.put("key1",a);
hm.put("key2",b);
invokeMethodC(hm);
}
invokeMethodC(Map<String, ?> uriVariables)
{
....
}
只是想知道我在创建 hashMap 对象时是否使用了正确的泛型
最佳答案
不要使用extends/super,因为你将无法将元素放入Map中。它会给出编译错误
Map<String, Number> uriVariables = = new HashMap<>();
关于java - 创建 hashmap 时正确使用泛型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27552059/
我是一名优秀的程序员,十分优秀!