Byte類的hashCode()方法是Java中的一種內置方法,用於返回ByteObject的哈希碼。
注意:hashCode()返回與intValue()相同的值。
用法
ByteObject.hashCode()
返回值:它返回一個int值,該值表示指定的Byte對象的哈希碼。
下麵是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
相關用法
- Java Bytes.indexOf(byte[] array, byte target)用法及代碼示例
- Java Bytes.indexOf(byte[] array, byte[] target)用法及代碼示例
- Java Map hashCode()用法及代碼示例
- Java Set hashCode()用法及代碼示例
- Java ZoneId hashCode()用法及代碼示例
- Java Path hashCode()用法及代碼示例
- Java Short hashCode()用法及代碼示例
- Java ChronoPeriod hashCode()用法及代碼示例
- Java AbstractList hashCode()用法及代碼示例
- Java List hashCode()用法及代碼示例
- Java Constructor hashCode()用法及代碼示例
- Java ChronoZonedDateTime hashCode()用法及代碼示例
- Java Year hashCode()用法及代碼示例
- Java Locale hashCode()用法及代碼示例
- Java Properties hashCode()用法及代碼示例
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 Byte hashCode() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。