标签: java integer hashmap key int
我知道java.util.HashMap只能接受Object作为键,因此不能接受原始int,而只接受Integer对象。
当使用get方法通过使用键作为参数来检索值时,您必须放入Integer对象吗?或者一个原始的int会在这里吗?
答案 0 :(得分:6)
在Java 5+中,原始int将被自动装箱到Integer中,因此使用它是安全的;在此之前,你需要使用一个对象
int
Integer