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


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


Java 集合接口的 hashCode() 方法返回此集合的哈希碼值。

用法

public int hashCode()

參數

NA

覆蓋

此方法覆蓋類 Object 中的 hashCode

返回

hashCode() 方法返回此集合的哈希碼值。

例子1

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
public class JavaCollectionHashCodeExample1 {
    public static void main(String[] args) {
        Collection<Integer> collection = new HashSet<>();
        List<Integer> list = new ArrayList<Integer>();
        collection.add(5);
        collection.add(3);
        //returns the hash code
        int val=collection.hashCode();
        System.out.println("Hash Code:"+val);
    }
}

輸出:

Hash Code:8

例子2

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
public class JavaCollectionHashCodeExample2 {
    public static void main(String[] args) {
        Collection<String> collection = new HashSet<>();
        collection.add("Reema");
        collection.add("Rahul");
        //returns the hash code for the string
        int val=collection.hashCode();
        System.out.println("Hash Code:"+val);
    }
}

輸出:

Hash Code:157560278




相關用法


注:本文由純淨天空篩選整理自 Java Collection hashCode() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。