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

Wie verwende ich ConcurrentHashMap in Java?

PHPz
Freigeben: 2023-04-26 14:34:07
nach vorne
753 Leute haben es durchsucht

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);
    }
Nach dem Login kopieren

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!

Verwandte Etiketten:
Quelle:yisu.com
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage