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


Java BitSet hashCode()用法及代码示例


BitSet类hashCode()方法

  • hashCode() 方法在 java.util 包中可用。
  • hashCode() 方法用于检索此位集 (BitSet) 的哈希码。
  • hashCode() 方法是一个非静态方法,因此可以通过类对象访问它,如果我们尝试使用类名访问该方法,则会出现错误。
  • hashCode() 方法在检索哈希码时不会抛出异常。

用法:

    public int hashCode();

参数:

  • 它不接受任何参数。

返回值:

这个方法的返回类型是int,它返回此 BitSet 的哈希码值。

例:

// Java program to demonstrate the example 
// of int hashCode() method of BitSet.

import java.util.*;

public class HashCodeOfBitSet {
    public static void main(String[] args) {
        // create an object of BitSet
        BitSet bs = new BitSet(10);

        // By using set() method is to set
        // the values in BitSet 
        bs.set(10);
        bs.set(20);
        bs.set(30);
        bs.set(40);
        bs.set(50);

        // Display Bitset
        System.out.println("bs:" + bs);

        // By using hashCode() method is to return
        // the hash code of this BitSet
        int hc = bs.hashCode();

        // Display hash code of bs
        System.out.println("bs.hashCode():" + hc);
    }
}

输出

bs:{10, 20, 30, 40, 50}
bs.hashCode():1075053010


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java BitSet hashCode() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。