java.util.IdentityHashMap.equals() java.util.IdentityHashMap.entrySet() java.util.IdentityHashMap.get() 描述 equals(Object o)方法用于指定的对象与此映射的相等比较。 声明 以下是java.util.IdentityHashMap.equals()方法的声明。 public boolean equals(Object o) 参数 o - 这是与此映射进行相等性比较的对象。 返回值 如果指定的对象等于此映射,则方法调用返回'true'。 异常 NA 实例 以下示例显示了java.util.IdentityHashMap.equals()的用法 package com.tutorialspoint; import java.util.*; public class IdentityHashMapDemo { public static void main(String args[]) { // create 2 identity hash maps IdentityHashMap ihmap1 = new IdentityHashMap(); IdentityHashMap ihmap2 = new IdentityHashMap(); // populate 2 maps ihmap1.put(1, "java"); ihmap1.put(2, "util"); ihmap1.put(3, "package"); ihmap2.put(1, "java"); ihmap2.put(2, "awt"); ihmap2.put(3, "package"); // compare 2 maps boolean isequal = ihmap1.equals(ihmap2); System.out.println("Is two maps equal: " + isequal); } } 让我们编译并运行上面的程序,这将产生以下结果。 Is two maps equal: false java.util.IdentityHashMap.entrySet() java.util.IdentityHashMap.get()