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


Java JavaTuples hashcode()用法及代碼示例


org.javatuples方法中的hashCode()方法返回JavaTuple類對象的哈希碼。如果對象不變,則哈希碼始終相同。 Hashcode是由JVM在對象創建時生成的唯一代碼。它可用於對與哈希相關的算法(例如哈希表,哈希圖等)執行某些操作。也可以使用此唯一代碼搜索對象。

方法聲明:

public final int hashCode()

用法:


int code = TupleClassObject.hashCode()

這裏TupleClassObject表示JavaTuple類,如Unit,Quartet,Decade,KeyValue等使用。

返回值:它返回一個整數值,該整數值表示此TupleClassObject的hashCode值。

以下示例程序旨在說明TupleClassObject的hashcode()方法:
程序1:獲取四方類對象的哈希碼。

// Below is a Java program to use hashCode() 
// with a LabelValue tuple 
  
import java.util.*; 
import org.javatuples.Quartet; 
  
class GfG { 
    public static void main(String[] args) 
    { 
        // Creating a Quartet with 4 values 
        Quartet<Integer, String, String, Double> quartet 
            = Quartet.with(Integer.valueOf(1), 
                           "GeeksforGeeks", 
                           "A computer portal", 
                           Double.valueOf(20.18)); 
  
        // Using the hashCode() method 
        int code = quartet.hashCode(); 
  
        // Printing the returned hashCode 
        System.out.println(code); 
    } 
}

輸出:

-1296686340

程序2:獲取LabelValue類對象的哈希碼。

// Below is a Java program to use hashCode() 
// with a LabelValue tuple 
  
import java.util.*; 
import org.javatuples.LabelValue; 
  
class GfG { 
    public static void main(String[] args) 
    { 
        // Creating a LabelValue object 
        LabelValue<Integer, String> lv 
            = LabelValue.with(Integer.valueOf(1), 
                              "A computer science portal"); 
  
        // Using the hashCode() method 
        int code = lv.hashCode(); 
  
        // Printing the returned hashCode 
        System.out.println(code); 
    } 
}

輸出:

-1587127699

注意:同樣,它可以與任何其他JavaTuple類一起使用。



相關用法


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