Online Java Compiler By
JavaTpoint.com
import java.lang.*; public class ByteHashCodeMethodExample2 { public static void main(String[] args) { //Hash code static method Byte b1= 123; System.out.println("Hash Code = "+Byte.hashCode(b1)); } }
Output