java hashmap
hashmap 是一个散列表,它存储的内容是键值对(key-value)映射。
hashmap 实现了 map 接口,根据键的 hashcode 值存储数据,具有很快的访问速度,键允许为 null,不支持线程同步。
hashmap 继承于abstractmap,实现了 map、cloneable、java.io.serializable 接口。
hashmap 的 key 与 value 类型可以相同也可以不同,可以是字符串(string)类型的 key 和 value,也可以是整型(integer)的 key 和字符串(string)类型的 value。
hashmap 中的元素实际上是对象,一些常见的基本类型可以使用它的包装类。
基本类型对应的包装类表如下:
基本类型 | 引用类型 |
---|---|
boolean | boolean |
byte | byte |
short | short |
int | integer |
long | long |
float | float |
double | double |
char | character |
hashmap 类位于 java.util 包中,使用前需要引入它,语法格式如下:
import java.util.hashmap; // 引入 hashmap 类
以下范例我们创建一个 hashmap 对象 sites, 整型(integer)的 key 和字符串(string)类型的 value:
hashmap<integer, string> sites = new hashmap<integer, string>();
1. 添加元素
hashmap 类提供类很多有用的方法,添加键值对(key-value)可以使用 put() 方法:
// 引入 hashmap 类 import java.util.hashmap; public class yapftest { public static void main(string[] args) { // 创建 hashmap 对象 sites hashmap sites = new hashmap(); // 添加键值对 sites.put(1, "google"); sites.put(2, "yapf"); sites.put(3, "taobao"); sites.put(4, "zhihu"); system.out.println(sites); } }
执行以上代码,输出结果如下:
{1=google, 2=yapf, 3=taobao, 4=zhihu}
以下范例创建一个字符串(string)类型的 key 和字符串(string)类型的 value:
// 引入 hashmap 类 import java.util.hashmap; public class yapftest { public static void main(string[] args) { // 创建 hashmap 对象 sites hashmap sites = new hashmap(); // 添加键值对 sites.put("one", "google"); sites.put("two", "yapf"); sites.put("three", "taobao"); sites.put("four", "zhihu"); system.out.println(sites); } }
执行以上代码,输出结果如下:
{four=zhihu, one=google, two=yapf, three=taobao}
2. 访问元素
我们可以使用 get(key) 方法来获取 key 对应的 value:
// 引入 hashmap 类 import java.util.hashmap; public class yapftest { public static void main(string[] args) { // 创建 hashmap 对象 sites hashmap sites = new hashmap(); // 添加键值对 sites.put(1, "google"); sites.put(2, "yapf"); sites.put(3, "taobao"); sites.put(4, "zhihu"); system.out.println(sites.get(3)); } }
执行以上代码,输出结果如下:
taobao
3. 删除元素
我们可以使用 remove(key) 方法来删除 key 对应的键值对(key-value):
// 引入 hashmap 类 import java.util.hashmap; public class yapftest { public static void main(string[] args) { // 创建 hashmap 对象 sites hashmap sites = new hashmap(); // 添加键值对 sites.put(1, "google"); sites.put(2, "yapf"); sites.put(3, "taobao"); sites.put(4, "zhihu"); sites.remove(4); system.out.println(sites); } }
执行以上代码,输出结果如下:
{1=google, 2=yapf, 3=taobao}
删除所有键值对(key-value)可以使用 clear 方法:
// 引入 hashmap 类 import java.util.hashmap; public class yapftest { public static void main(string[] args) { // 创建 hashmap 对象 sites hashmap sites = new hashmap(); // 添加键值对 sites.put(1, "google"); sites.put(2, "yapf"); sites.put(3, "taobao"); sites.put(4, "zhihu"); sites.clear(); system.out.println(sites); } }
执行以上代码,输出结果如下:
{}
4. 计算大小
如果要计算 hashmap 中的元素数量可以使用 size() 方法:
// 引入 hashmap 类 import java.util.hashmap; public class yapftest { public static void main(string[] args) { // 创建 hashmap 对象 sites hashmap sites = new hashmap(); // 添加键值对 sites.put(1, "google"); sites.put(2, "yapf"); sites.put(3, "taobao"); sites.put(4, "zhihu"); system.out.println(sites.size()); } }
执行以上代码,输出结果如下:
4
5. 迭代 hashmap
可以使用 for-each 来迭代 hashmap 中的元素。
如果你只想获取 key,可以使用 keyset() 方法,然后可以通过 get(key) 获取对应的 value,如果你只想获取 value,可以使用 values() 方法。
// 引入 hashmap 类 import java.util.hashmap; public class yapftest { public static void main(string[] args) { // 创建 hashmap 对象 sites hashmap sites = new hashmap(); // 添加键值对 sites.put(1, "google"); sites.put(2, "yapf"); sites.put(3, "taobao"); sites.put(4, "zhihu"); // 输出 key 和 value for (integer i : sites.keyset()) { system.out.println("key: " + i + " value: " + sites.get(i)); } // 返回所有 value 值 for(string value: sites.values()) { // 输出每一个value system.out.print(value + ", "); } } }
执行以上代码,输出结果如下:
key: 1 value: google key: 2 value: yapf key: 3 value: taobao key: 4 value: zhihu google, yapf, taobao, zhihu,
6. java hashmap 方法
hashmapjava hashmap 常用方法列表如下:
方法 | 描述 |
---|---|
clear() | 删除 hashmap 中的所有键/值对 |
clone() | 复制一份 hashmap |
isempty() | 判断 hashmap 是否为空 |
size() | 计算 hashmap 中键/值对的数量 |
put() | 将键/值对添加到 hashmap 中 |
putall() | 将所有键/值对添加到 hashmap 中 |
putifabsent() | 如果 hashmap 中不存在指定的键,则将指定的键/值对插入到 hashmap 中。 |
remove() | 删除 hashmap 中指定键 key 的映射关系 |
containskey() | 检查 hashmap 中是否存在指定的 key 对应的映射关系。 |
containsvalue() | 检查 hashmap 中是否存在指定的 value 对应的映射关系。 |
replace() | 替换 hashmap 中是指定的 key 对应的 value。 |
replaceall() | 将 hashmap 中的所有映射关系替换成给定的函数所执行的结果。 |
get() | 获取指定 key 对应对 value |
getordefault() | 获取指定 key 对应对 value,如果找不到 key ,则返回设置的默认值 |
foreach() | 对 hashmap 中的每个映射执行指定的操作。 |
entryset() | 返回 hashmap 中所有映射项的集合集合视图。 |
keyset() | 返回 hashmap 中所有 key 组成的集合视图。 |
values() | 返回 hashmap 中存在的所有 value 值。 |
merge() | 添加键值对到 hashmap 中 |
compute() | 对 hashmap 中指定 key 的值进行重新计算 |
computeifabsent() | 对 hashmap 中指定 key 的值进行重新计算,如果不存在这个 key,则添加到 hasmap 中 |
computeifpresent() | 对 hashmap 中指定 key 的值进行重新计算,前提是该 key 存在于 hashmap 中。 |