當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。