馬老師可愛的Python
初始化
通過 ConcurrentHashMap 的無參構(gòu)造探尋 ConcurrentHashMap 的初始化流程。
? ?/**
? ? * Creates a new, empty map with a default initial capacity (16),
? ? * load factor (0.75) and concurrencyLevel (16).
? ? */
? ?public ConcurrentHashMap() {
? ? ? ?this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR, DEFAULT_CONCURRENCY_LEVEL);
? ?}

標(biāo)簽: