当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。