Java / Map and its implementations
Why null is not allowed in ConcurrentHashmap?
The reason is that if map.get(key) returns null, you can't detect whether the key explicitly maps to null vs the key isn't mapped. In a non-concurrent map, you can check this via map.contains(key), but in a concurrent one, the map might have changed between calls.
More Related questions...