类 WeakConcurrentMap<K,V>

所有已实现的接口:
Iterable<Map.Entry<K,V>>, Runnable
直接已知子类:
WeakConcurrentMap.WithInlinedExpunction

public class WeakConcurrentMap<K,V> extends AbstractWeakConcurrentMap<K,V,WeakConcurrentMap.LookupKey<K>>

A thread-safe map with weak keys. Entries are based on a key's system hash code and keys are considered equal only by reference equality.

This class does not implement the Map interface because this implementation is incompatible with the map contract. While iterating over a map's entries, any key that has not passed iteration is referenced non-weakly.
作者:
unknowIfGuestInDream