Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道 java.util.HashMap 只能接受 Objects 作为键,因此不能接受原始 int 而是只接受 Integer 对象。
使用get方法通过key作为参数取值时,必须放入Integer对象吗?还是一个原始的 int 就足够了?
在 Java 5+ 中,原语int将被自动装箱为Integer,因此使用它是安全的;在此之前,您需要使用一个对象
int
Integer