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


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


Java中SortedSet的hashCode()方法用於獲取SortedSet的實例的hashCode值。它返回一個整數值,該值是此SortedSet實例的hashCode值。

用法:

public int hashCode()

參數:此函數沒有參數。


返回值:該方法返回一個整數值,該值是此Set實例的hashCode值。

注意:SortedSet中的hashCode()方法是從Java中的Set接口繼承的。

以下示例說明了SortedSet.hashCode()方法:

示例1:

// Java code to demonstrate the working of 
// hashCode() method in SortedSet 
  
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // creating an Set 
        SortedSet<Integer> arr 
            = new TreeSet<Integer>(); 
  
        // using add() to initialize values 
        // [1, 2, 3, 4] 
        arr.add(1); 
        arr.add(2); 
        arr.add(3); 
        arr.add(4); 
  
        // print Set 
        System.out.println("Set: " + arr); 
  
        // Get the hashCode value 
        // using hashCode() value 
        System.out.println("HashCode value: "
                           + arr.hashCode()); 
    } 
}
輸出:
Set: [1, 2, 3, 4]
HashCode value: 10

示例2:

// Java code to demonstrate the working of 
// hashCode() method in Set 
  
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // creating an Set 
        SortedSet<String> arr 
            = new TreeSet<String>(); 
  
        // using add() to initialize values 
        // [Geeks, For, ForGeeks, GeeksForGeeks] 
        arr.add("Geeks"); 
        arr.add("For"); 
        arr.add("ForGeeks"); 
        arr.add("GeeksForGeeks"); 
  
        // print Set 
        System.out.println("Set: " + arr); 
  
        // Get the hashCode value 
        // using hashCode() value 
        System.out.println("HashCode value: "
                           + arr.hashCode()); 
    } 
}
輸出:
Set: [For, ForGeeks, Geeks, GeeksForGeeks]
HashCode value: -482506029

參考: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#hashCode()



相關用法


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