Java.lang.Byte.doubleValue() 方法 Java.lang.Byte.decode() 方法 Java.lang.Byte.equals() 方法 Java.lang.Byte.doubleValue() 方法 package com.codingdict; import java.lang.*; public class ByteDemo { public static void main(String[] args) { // create 2 Byte objects b1, b2 Byte b1, b2; // create 2 double primitives d1, d2 double d1, d2; // assign values to b1, b2 b1 = new Byte("100"); b2 = new Byte("-10"); // assign double values of b1, b2 to d1, d2 d1 = b1.doubleValue(); d2 = b2.doubleValue(); String str1 = "double value of Byte " + b1 + " is " + d1; String str2 = "double value of Byte " + b2 + " is " + d2; // print d1, d2 values System.out.println( str1 ); System.out.println( str2 ); } } Java.lang.Byte.decode() 方法 Java.lang.Byte.equals() 方法