Java 集合类中的 Map.equals() 方法判断Map集合是否与指定的对象相同,这个对象通常情况下也是一个集合。返回值为 boolean 类型,如果 Map 集合与比较的对象相同,则返回 true,否则返回 false。
语法:
参数说明:
创建两个内容相同的 Map 集合对象,然后使用 equals 方法进行判断。代码如下:
public static void main(String[] args)throws InterruptedException{
Map map1 = new HashMap(); //定义Map集合对象
map1.put("apple","新鲜的苹果"); //向集合中添加对象
map1.put("computer","配置优良的计算机");
map1.put("book","堆积成山的图书");
Map map2 = new HashMap();
map2.put("apple","新鲜的苹果"); //定义Map集合对象map2
map2.put("computer","配置优良的计算机");
map2.put("book","堆积成山的图书");
boolean contains = map1.equals(map2); //判断集合是否相等
if(contains){
System.out.println("两个Map对象相同");
}else{
System.out.println("这不是两个相同的Map对象");
}
}
运行结果如下:
两个Map对象相同