当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Hashtable equals()用法及代码示例


Hashtable类equals()方法

  • equals() 方法可在java.util包。
  • equals() 方法用于检查此 Hashtable 与给定 Object 是否相等。
  • equals() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • equals() 方法在检查两个对象的相等性时不会抛出异常。

用法:

    public boolean equals(Object ob);

参数:

  • Object ob– 表示要检查相等性的对象。

返回值:

该方法的返回类型是boolean

  • 当此 Hashtable 与给定对象相同时,它返回 true。
  • 当此 Hashtable 与给定对象不同时,它返回 false。

例:

// Java program to demonstrate the example 
// of boolean equals(Object ob) method of Hashtable 

import java.util.*;

public class EqualsOfHashtable {
    public static void main(String[] args) {
        // Instantiate two hashtable object  
        Hashtable ht = new Hashtable();
        Hashtable comp_ht = new Hashtable();

        // By using put() method is to
        // add the linked values in an Hashtable ht
        ht.put(10, "C");
        ht.put(20, "C++");
        ht.put(30, "JAVA");
        ht.put(40, "PHP");
        ht.put(50, "SFDC");

        // By using put() method is to
        // add the linked values in an
        // Hashtable comp_ht
        comp_ht.put(60, "COBOL");
        comp_ht.put(70, "HTML");

        // Display Hashtable
        System.out.println("Hashtable:" + ht);

        // By using equals() method isto
        // check equality of two hashtable objects
        boolean status = ht.equals(comp_ht);

        // Display Status of Hashtable
        System.out.println("ht.equals(comp_ht):" + status);
    }
}

输出

Hashtable:{10=C, 20=C++, 30=JAVA, 40=PHP, 50=SFDC}
ht.equals(comp_ht):false


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Hashtable equals() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。