Java Byte.doubleValue()
Syntax
Byte.doubleValue() has the following syntax.
public double doubleValue()
Example
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");
/*from www . j a v a2s . c om*/
double d = byteObject.doubleValue();
System.out.println("double:"+d);
}
}
The output: