摘要:
《深入理解Java虚拟机》第2版挖的坑终于在第3版中被R大填平了 intern的作用 该方法的作用是把首次遇到的字符串加载到常量池中。 对于任意两个字符串 s 和 t,当且仅当 s.equals(t) 为 true 时,s.intern() == t.intern() 才为 true。 测试代码 S 阅读全文
摘要:
【原创】这道面试题我真不知道面试官想要的回答是什么 源码 if (key == null || value == null) throw new NullPointerException(); 二义性 假定ConcurrentHashMap也可以存放value为null的值。那不管是HashMap还 阅读全文