I'm reading reading the source code of java.util.ConcurrentHashMap and find that the next field in ConcurrentHashMap$HashEntry is final. There are two operations that is possible to modify the value of next:add and remove. But those two operations cat be done thread safely even though the next field is not final. So I cann't understand why the next field is final, can anyone tell me why? thanks.
| |||
|
feedback
|
|
Note that, for example,
| |||
|
feedback
|