- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Eclipse在下面的声明中报类型安全警告是有原因的吗?
Map<String,List<Map<String, ParseNode>>> mapX = new HashMap();
我知道所有 mapX
用法都是强类型的,但是 java 泛型坚持提供 HashMap 参数化类型(除了向代码添加噪声)可以实现什么?
最佳答案
您的声明无效。
使用 Java 5 到 6,你应该这样写:
Map<String, List<Map<String, ParseNode>>> m =
new HashMap<String, List<Map<String, ParseNode>>>();
从 Java 7 开始,您可以通过以下方式简化它:
Map<String, List<Map<String, ParseNode>>> m = new HashMap<>();
您的语法意味着不同的东西,并使用原始类型:
Map<String, List<Map<String, ParseNode>>> m = new HashMap();
更新:
要回答您的问题,这会产生影响(如 Java Tutorial 所述):
Note that to take advantage of automatic type inference during generic class instantiation, you must specify the diamond. [In your case] the compiler generates an unchecked conversion warning because the HashMap() constructor refers to the HashMap raw type, not the [parameterized Map] type.
基本上就是说你这里的类型的参数化没有太大意义。此声明之后的代码将在假设它包含具有声明类型的值的情况下进行编译。但是在运行时,您声明了一个原始类型的类型,并且您很可能已经为该条目分配了一个包含不同值的映射。
你写的相当于写这样的东西:
Map rawMap = new HashMap();
rawMap.add("string", "not list!");
Map<String, List<Map<String, ParseNode>>> m = rawMap; // uh oh!!
这会很好地编译,但当您尝试访问 m
之一时,它会在运行时炸毁您的脸。的值为 List<Map<String, ParseNode>>
.
这样做的原因是引入泛型的同时在源代码级别保留了完全的向后兼容性,因此它们存在一些局限性,例如:
<>
),就不可能有简写形式,关于java - 声明 RHS 上的泛型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9541403/
我是一名优秀的程序员,十分优秀!