📜  Java中的字节 hashCode() 方法及示例

📅  最后修改于: 2022-05-13 01:55:30.244000             🧑  作者: Mango

Java中的字节 hashCode() 方法及示例


Byte 类的hashCode()方法是Java中的一个内置方法,用于返回 ByteObject 的哈希码。

注意: hashCode() 返回与 intValue() 相同的值。

句法

ByteObject.hashCode()

返回值:返回一个int值,表示指定Byte对象的hashcode。

下面是Java中 hashCode() 方法的实现:

示例 1:

// Java code to demonstrate
// Byte hashCode() method
  
class GFG {
    public static void main(String[] args)
    {
  
        String value = "74";
  
        // wrapping the byte value
        // in the wrapper class Byte
        Byte b = new Byte(value);
  
        // hashCode of the Byte Object
        int output = b.hashCode();
  
        // printing the output
        System.out.println("HashCode of "
                           + b + " : " + output);
    }
}
输出:
HashCode of 74 : 74

示例 2:

// Java code to demonstrate
// Byte hashCode() method
  
class GFG {
    public static void main(String[] args)
    {
  
        String value = "-17";
  
        // wrapping the byte value
        // in the wrapper class Byte
        Byte b = new Byte(value);
  
        // hashCode of the Byte Object
        int output = b.hashCode();
  
        // printing the output
        System.out.println("HashCode of "
                           + b + " : " + output);
    }
}
输出:
HashCode of -17 : -17