Java Short.doubleValue()

Syntax

Short.doubleValue() has the following syntax.

public double doubleValue()

Example

In the following code shows how to use Short.doubleValue() method.


public class Main {
  public static void main(String[] args) {
    Short shortObject = new Short("10");
    double d = shortObject.doubleValue();
    System.out.println("double:"+d);
/*w w w  . j  a v a2 s . c o m*/
  }
}

The output:





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable