jdk/src/share/classes/java/lang/Double.java
changeset 14507 066419d1e732
parent 14503 0729d9e57ed5
child 15311 be0ff4a719bf
equal deleted inserted replaced
14506:9c33711ec566 14507:066419d1e732
   119      * The number of bits used to represent a {@code double} value.
   119      * The number of bits used to represent a {@code double} value.
   120      *
   120      *
   121      * @since 1.5
   121      * @since 1.5
   122      */
   122      */
   123     public static final int SIZE = 64;
   123     public static final int SIZE = 64;
       
   124 
       
   125     /**
       
   126      * The number of bytes used to represent a {@code double} value.
       
   127      *
       
   128      * @since 1.8
       
   129      */
       
   130     public static final int BYTES = SIZE / Byte.SIZE;
   124 
   131 
   125     /**
   132     /**
   126      * The {@code Class} instance representing the primitive type
   133      * The {@code Class} instance representing the primitive type
   127      * {@code double}.
   134      * {@code double}.
   128      *
   135      *