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


Java Long hashCode()用法及代碼示例


Long類hashCode()方法

  • hashCode() 方法可在java.lang包。
  • hashCode() 方法用於返回 Long 對象的哈希碼。
  • hashCode() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • hashCode() 方法在返回哈希碼時不拋出異常。

用法:

    public int hashCode();

參數:

  • 它不接受任何參數。

返回值:

這個方法的返回類型是int,它返回此對象的哈希碼。

例:

// Java program to demonstrate the example 
// of hashCode() method of Long class

public class HashCodeOfLongClass {
    public static void main(String[] args) {
        // Variables initialization
        long value1 = 30;
        long value2 = 10;

        // It returns hashcode value denoted by this Long ob1 object
        // by calling ob1.hashCode()
        Long ob1 = new Long(value1);

        // Display ob1 result
        System.out.println("ob1.hashCode():" + ob1.hashCode());

        // It returns hashcode value denoted by this Long ob2 object
        // by calling ob2.hashCode()
        Long ob2 = new Long(value2);

        // Display ob2 result
        System.out.println("ob2.hashCode():" + ob2.hashCode());
    }
}

輸出

ob1.hashCode():30
ob2.hashCode():10


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Long class hashCode() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。