本文介绍了为什么ConcurrentHashMap会阻止空键和值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

的JavaDoc这样说:

The JavaDoc of ConcurrentHashMap says this:

我的问题:为什么?

第二个问题:为什么Hashtable不允许空?

2nd question: why doesn't Hashtable allow null?

我使用了很多HashMaps来存储数据。但是当改为ConcurrentHashMap时,我因为NullPointerExceptions而多次遇到麻烦。

I've used a lot of HashMaps for storing data. But when changing to ConcurrentHashMap I got several times into trouble because of NullPointerExceptions.

推荐答案

From the author of ConcurrentHashMap himself (Doug Lea):

这篇关于为什么ConcurrentHashMap会阻止空键和值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 11:12