Heim  >  Artikel  >  Java  >  Wie verwende ich ConcurrentHashMap in Java?

Wie verwende ich ConcurrentHashMap in Java?

PHPz
PHPznach vorne
2023-04-26 14:34:07703Durchsuche

Erklärung

1. ConcurentHashMap vereint die Vorteile von HashMap und Hashtable. HashMap berücksichtigt keine Synchronisierung, Hashtable jedoch. Hashtable muss jedoch bei jeder Synchronisierung die gesamte Struktur sperren.

2. Die ConcurentHashMap-Sperrmethode ist leicht feinkörnig. ConcurentHashMap unterteilt die Hash-Tabelle in 16 Buckets (Standardwert) und sperrt nur die aktuell benötigten Buckets.

Instanzen

/**
     * 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);
    }

Das obige ist der detaillierte Inhalt vonWie verwende ich ConcurrentHashMap in Java?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:yisu.com. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen