HashMap getOrDefault(key, defaultValue) method in Java with Examples
The getOrDefault(Object key, V defaultValue) method of Map interface, implemented by HashMap class is used to get the value mapped with specified key. If no value is mapped with the provided key then the default value is returned.
Syntax:
default V getOrDefault(Object key, V defaultValue)
Parameters: This method accepts two parameters:
- key: which is the key of the element whose value has to be obtained.
- defaultValue: which is the default value that has to be returned, if no value is mapped with the specified key.
Return Value: This method returns value mapped with the specified key, otherwise default value is returned.
解释
意思就是当Map集合中有这个key时,就使用这个key值,如果没有就使用默认值defaultValue
实例
Program 1:
// Java program to demonstrate
// getOrDefault(Object key, V defaultValue) method
import java.util.*;
public class GFG {
// Main method
public static void main(

Java中HashMap的getOrDefault方法用于根据指定键获取其映射的值,如果键不存在,则返回默认值。该方法接受键和默认值作为参数,返回键对应的值或默认值。
最低0.47元/天 解锁文章
2060

被折叠的 条评论
为什么被折叠?



