mapget方法介绍
map.get() 方法是用来获取 Map 集合中指定键对应的值。它接受一个参数,即要获取的键,如果该键存在于 Map 中,则返回该键对应的值,如果键不存在,则返回 null。
语法如下:
V get(Object key)
其中,V 表示 Map 中值的类型,key 表示要获取的键。
示例用法:
import java.util.HashMap;
import java.util.Map;
public class Main {
public static void main(String[] args) {
// 创建一个 HashMap
Map<String, Integer> map = new HashMap<>();
// 添加键值对
map.put("apple", 1);
map.put("banana", 2);
map.put("orange", 3);
// 获取键对应的值
int value = map.get("apple");
System.out.println("apple 对应的值是:" + value);
// 获取不存在的键对应的值
Integer nonExistingValue = map.get("grape");
System.out.println("grape 对应的值是:" + nonExistingValue); // 输出:grape 对应的值是:null
}
}
在上面的例子中,我们首先创建了一个 HashMap,并向其中添加了三对键值对。然后,我们使用 map.get() 方法分别获取了键 "apple" 和 "grape" 对应的值。由于 "apple" 存在于 Map 中,所以获取到的值是 1;而 "grape" 不存在于 Map 中,所以获取到的值是 null
原文地址: https://www.cveoy.top/t/topic/iFJ8 著作权归作者所有。请勿转载和采集!