怎么使用jiava的map
时间: 2024-05-16 10:12:26 浏览: 74
Java 中的 Map 是一种键值对的数据结构,可以通过键来查找对应的值。以下是使用 Map 的示例代码:
1. 创建 Map 对象
```
Map<String, Integer> map = new HashMap<>();
```
2. 添加键值对
```
map.put("apple", 1);
map.put("banana", 2);
map.put("orange", 3);
```
3. 获取值
```
int value = map.get("apple");
```
4. 判断是否包含指定键
```
boolean containsKey = map.containsKey("apple");
```
5. 遍历 Map
```
for (Map.Entry<String, Integer> entry : map.entrySet()) {
String key = entry.getKey();
int value = entry.getValue();
System.out.println(key + " = " + value);
}
```
注意:Map 中的键必须是唯一的,如果添加相同的键,则会覆盖原来的值。
阅读全文