putIfAbsent 方法

V putIfAbsent(
  1. K key,
  2. V ifAbsent(
      )
    )
    继承

    不可修改的映射不支持此操作。

    实现

    V putIfAbsent(K key, V ifAbsent()) {
      throw UnsupportedError("Cannot modify unmodifiable map");
    }