根据key获取value值
时间: 2023-09-02 17:09:47 浏览: 111
什么叫key-value数据库
获取 Map 中指定 key 对应的 value,可以使用 get() 方法,该方法接收一个 key 参数,返回对应的 value。示例如下:
```java
Map<String, Integer> map = new HashMap<>();
map.put("apple", 1);
map.put("banana", 2);
map.put("cherry", 3);
int appleValue = map.get("apple"); // 获取 key 为 "apple" 的 value
System.out.println(appleValue); // 输出:1
```
运行上述代码,可以输出 key 为 "apple" 的 value:1。
需要注意的是,如果 Map 中不存在指定的 key,调用 get() 方法将返回 null。因此,使用 get() 方法时需要进行 null 判断。
阅读全文