The type HashMap is not generic; it cannot be parameterized with arguments <>Java(16777740)
时间: 2024-05-26 09:11:27 浏览: 223
Java HashMap
这问题看起来像是一个编程问题。HashMap 是 Java 中的一个类,它可以存储键值对,并且可以根据键获取值。在 Java5 中,HashMap 可以用泛型进行参数化,但在 Java5 之前,不支持泛型,需要手动进行类型转换。如果你遇到了类似于 "The type HashMap is not generic; it cannot be parameterized with arguments" 这样的错误,请检查你的 Java 版本,或者将 HashMap 的旧型参数化方法应用于你的代码。
阅读全文