3
newConcurrentMap在後端如何實現?我的意思是它基於散列表(桶)或有一些其他後端實現Google Guava newConcurrentMap base implementation
newConcurrentMap在後端如何實現?我的意思是它基於散列表(桶)或有一些其他後端實現Google Guava newConcurrentMap base implementation
當前它返回java.util.concurrent.ConcurrentHashMap
。
請參閱[Maps.java:304](https://github.com/google/guava/blob/a2a2ebb9aa29a5d24182f394125121129f936155/guava/src/com/google/common/collect/Maps.java#L304)和[MapMaker。的java:520](https://github.com/google/guava/blob/master/guava/src/com/google/common/collect/MapMaker.java#L520)。 – mfulton26