ConcurrentHashMap放入null值报错

时间:2024-07-26 11:04:50
//ConcurrentHashMap源码:
/** Implementation for put and putIfAbsent */
final V putVal(K key, V value, boolean onlyIfAbsent) {
if (key == null || value == null) throw new NullPointerException();
//......

关于为什么这么设计:

https://laiqitech.com/125/

关于null的一些小知识:

http://www.importnew.com/14229.html