説明
1. ConcurentHashMap は、HashMap と Hashtable の利点を組み合わせています。 HashMap は同期を考慮しませんが、Hashtable は同期を考慮します。ただし、Hashtable は同期するたびに構造全体をロックする必要があります。
2. ConcurentHashMap のロック方法は少しきめが細かいです。 ConcurentHashMap は、ハッシュ テーブルを 16 個のバケットに分割します (デフォルト値)。get、put、remove などの一般的な操作は、現在必要なバケットのみをロックします。
例
/** * Creates a new, empty map with the default initial table size (16). */ public ConcurrentHashMap() { } /** * Creates a new, empty map with an initial table size * accommodating the specified number of elements without the need * to dynamically resize. * * @param initialCapacity The implementation performs internal * sizing to accommodate this many elements. * @throws IllegalArgumentException if the initial capacity of * elements is negative */ public ConcurrentHashMap(int initialCapacity) { if (initialCapacity < 0) throw new IllegalArgumentException(); int cap = ((initialCapacity >= (MAXIMUM_CAPACITY >>> 1)) ? MAXIMUM_CAPACITY : tableSizeFor(initialCapacity + (initialCapacity >>> 1) + 1)); this.sizeCtl = cap; } /** * Creates a new map with the same mappings as the given map. * * @param m the map */ public ConcurrentHashMap(Map<? extends K, ? extends V> m) { this.sizeCtl = DEFAULT_CAPACITY; putAll(m); }
以上がJava で ConcurrentHashMap を使用するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。