Java hashmap问题

时间:2016-05-15 22:27:40

标签: java hashmap

为什么跟随行的任何想法都有相关的错误消息?感谢。

代码

Map<int,boolean> buffer = new HashMap<int, boolean>();

错误消息

Description Resource    Path    Location    Type
Syntax error, insert "Dimensions" to complete ReferenceType

1 个答案:

答案 0 :(得分:5)

您的代码应该是这样的:

Map<Integer,Boolean> buffer = new HashMap<Integer, Boolean>();

您不能使用具有通用性的原始类型。

您需要为它们使用Wrapper类。