我试图在 LinkedHashMap 中存储一个字节数组
static Map<Long, byte[]> lhm2 = new LinkedHashMap<Long, byte[]>(1000);
但
lhm2.get(1)
将抛出 NullPointerException。lhm2 包含密钥 1,我检查它是否不为空
if(lhm2.get(1) != null){
System.out.println("not null");
}
有什么建议么?
提前致谢!
克里斯