InterviewSolution
Saved Bookmarks
| 1. |
How Concurrenthashmap Works? |
|
Answer» The basic design of ConcurrentHashMap is to HANDLING THREADING. Basically it locks each of the box (by default 16) which can be locked independently and THREAD safe for operation. And it does not expose the internal LOCK PROCESS. The basic design of ConcurrentHashMap is to handling threading. Basically it locks each of the box (by default 16) which can be locked independently and thread safe for operation. And it does not expose the internal lock process. |
|