Online Java Compiler By
JavaTpoint.com
public class JavaByteShortValueExample2 { public static void main(String[] args) { Byte byte1=20; //converting the byte value to short Short val1=byte1.shortValue(); //calling short class methods Short code=val1.shortValue(); System.out.println(code); } }
Output