Java Data Type Tutorial - Byte doubleValue() example








Byte doubleValue() returns the Byte as a double.

Syntax

doubleValue has the following syntax.

public double doubleValue()

Specified by

doubleValue in class Number

Return

doubleValue returns the double.

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");
/*w w  w .  j  a v a 2s. c o m*/

    double d = byteObject.doubleValue();
    System.out.println("double:"+d);

  }
}

The output: