Byte doubleValue()
returns the Byte as a double.
doubleValue
has the following syntax.
public double doubleValue()
doubleValue in class Number
doubleValue
returns the double.
In the following code shows how to use Byte.doubleValue() method.
public class Main { public static void main(String[] args) { Byte byteObject = new Byte("10"); /*w w w . j a v a 2s. c o m*/ double d = byteObject.doubleValue(); System.out.println("double:"+d); } }
The output: