Online Java Compiler By
JavaTpoint.com
public class JavaByteDoubleValueExample3 { public static void main(String[] args) { //byte1 is a primitive data type object, it can?t be used to call Byte class methods byte byte1=7; Byte byte2=Byte.MAX_VALUE;; System.out.println("1. "+byte1.doubleValue()); System.out.println("2. "+byte2.doubleValue()); } }
Output