该方法出现在Leetcode第49题:字母异位词分组
getOrDefault() 方法获取指定 key 对应对 value,如果找不到 key ,则返回设置的默认值。
getOrDefault() 方法的语法为:
hashmap.getOrDefault(Object key, V defaultValue)
参数说明:
以下实例演示了 getOrDefault() 方法的使用:
import java.util.HashMap;
class Main {
? ? public static void main(String[] args) {
? ? ? ? // 创建一个 HashMap
? ? ? ? HashMap<Integer, String> sites = new HashMap<>();
? ? ? ? // 往 HashMap 添加一些元素
? ? ? ? sites.put(1, "Google");
? ? ? ? sites.put(2, "Runoob");
? ? ? ? sites.put(3, "Taobao");
? ? ? ? System.out.println("sites HashMap: " + sites);
? ? ? ? // key 的映射存在于 HashMap 中
? ? ? ? // Not Found - 如果 HashMap 中没有该 key,则返回默认值
? ? ? ? String value1 = sites.getOrDefault(1, "Not Found");
? ? ? ? System.out.println("Value for key 1: ?" + value1);
? ? ? ? // key 的映射不存在于 HashMap 中
? ? ? ? // Not Found - 如果 HashMap 中没有该 key,则返回默认值
? ? ? ? String value2 = sites.getOrDefault(4, "Not Found");
? ? ? ? System.out.println("Value for key 4: " + value2);
? ? }
}
执行以上程序输出结果为:
Value for key 1: Google
Value for key 4: Not Found