mirror of git://gcc.gnu.org/git/gcc.git
				
				
				
			
		
			
				
	
	
		
			166 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Java
		
	
	
	
			
		
		
	
	
			166 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Java
		
	
	
	
| /* Copyright (C) 1998, 1999, 2000, 2001  Free Software Foundation
 | |
| 
 | |
|    This file is part of libgcj.
 | |
| 
 | |
| This software is copyrighted work licensed under the terms of the
 | |
| Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
 | |
| details.  */
 | |
|  
 | |
| package java.lang;
 | |
| 
 | |
| /**
 | |
|  * @author Andrew Haley <aph@cygnus.com>
 | |
|  * @date September 25, 1998.  
 | |
|  */
 | |
| /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
 | |
|  * "The Java Language Specification", ISBN 0-201-63451-1
 | |
|  * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
 | |
|  * Status:  Believed complete and correct.
 | |
|  */
 | |
| 
 | |
| public final class Double extends Number implements Comparable
 | |
| {
 | |
|   public static final double MIN_VALUE = 5e-324;
 | |
|   public static final double MAX_VALUE = 1.7976931348623157e+308;
 | |
|   public static final double NEGATIVE_INFINITY = -1.0d/0.0d;
 | |
|   public static final double POSITIVE_INFINITY = 1.0d/0.0d;
 | |
|   public static final double NaN = 0.0d/0.0d;
 | |
| 
 | |
|   // This initialization is seemingly circular, but it is accepted
 | |
|   // by javac, and is handled specially by gcc.
 | |
|   public static final Class TYPE = double.class;
 | |
| 
 | |
|   private double value;
 | |
| 
 | |
|   private static final long serialVersionUID = -9172774392245257468L;
 | |
| 
 | |
|   public native static double parseDouble (String s) 
 | |
|     throws NumberFormatException;
 | |
| 
 | |
|   public Double (double v)
 | |
|   {
 | |
|     value = v;
 | |
|   }
 | |
| 
 | |
|   public Double (String s) throws NumberFormatException
 | |
|   {
 | |
|     value = valueOf (s).doubleValue ();
 | |
|   }
 | |
| 
 | |
|   public String toString ()
 | |
|   {
 | |
|     return toString (value);
 | |
|   }
 | |
| 
 | |
|   public boolean equals (Object obj)
 | |
|   {
 | |
|     if (!(obj instanceof Double))
 | |
|       return false;
 | |
| 
 | |
|     Double d = (Double) obj;
 | |
| 
 | |
|     return doubleToLongBits (value) == doubleToLongBits (d.doubleValue ());
 | |
|   }
 | |
| 
 | |
|   public int hashCode ()
 | |
|   {
 | |
|     long v = doubleToLongBits (value);
 | |
|     return (int) (v ^ (v >>> 32));
 | |
|   }
 | |
| 
 | |
|   public int intValue ()
 | |
|   {
 | |
|     return (int) value;
 | |
|   }
 | |
| 
 | |
|   public long longValue ()
 | |
|   {
 | |
|     return (long) value;
 | |
|   }
 | |
| 
 | |
|   public float floatValue ()
 | |
|   {
 | |
|     return (float) value;
 | |
|   }
 | |
| 
 | |
|   public double doubleValue ()
 | |
|   {
 | |
|     return value;
 | |
|   }
 | |
| 
 | |
|   public byte byteValue ()
 | |
|   {
 | |
|     return (byte) value;
 | |
|   }
 | |
| 
 | |
|   public short shortValue ()
 | |
|   {
 | |
|     return (short) value;
 | |
|   }
 | |
| 
 | |
|   native static String toString (double v, boolean isFloat);
 | |
| 
 | |
|   public static String toString (double v)
 | |
|   {
 | |
|     return toString (v, false);
 | |
|   }
 | |
| 
 | |
|   public static Double valueOf (String s) throws NumberFormatException
 | |
|   {
 | |
|     return new Double (parseDouble (s));
 | |
|   }
 | |
| 
 | |
|   public boolean isNaN ()
 | |
|   {
 | |
|     return isNaN (value);
 | |
|   }
 | |
| 
 | |
|   public static boolean isNaN (double v)
 | |
|   {
 | |
|     long bits = doubleToLongBits (v);
 | |
|     long e = bits & 0x7ff0000000000000L;
 | |
|     long f = bits & 0x000fffffffffffffL;
 | |
| 
 | |
|     return e == 0x7ff0000000000000L && f != 0L;
 | |
|   }
 | |
| 
 | |
|   public boolean isInfinite ()
 | |
|   {
 | |
|     return isInfinite (value);
 | |
|   }
 | |
| 
 | |
|   public static boolean isInfinite (double v)
 | |
|   {
 | |
|     long bits = doubleToLongBits (v);
 | |
|     long f = bits & 0x7fffffffffffffffL;
 | |
| 
 | |
|     return f == 0x7ff0000000000000L;
 | |
|   }
 | |
| 
 | |
|   public static native long doubleToLongBits (double value);
 | |
|   public static native long doubleToRawLongBits (double value);
 | |
|   public static native double longBitsToDouble (long bits);
 | |
| 
 | |
|   public int compareTo (Double d)
 | |
|   {
 | |
|     double v = d.value;
 | |
|     if (isNaN (value))
 | |
|       return isNaN (v) ? 1 : 0;
 | |
|     else if (isNaN (v))
 | |
|       return -1;
 | |
|     else if (value == 0.0 && v == -0.0)
 | |
|       return 1;
 | |
|     else if (value == -0.0 && v == 0.0)
 | |
|       return -1;
 | |
|     else if (value == v)
 | |
|       return 0;
 | |
| 
 | |
|     return value > v ? 1 : -1;
 | |
|   }
 | |
| 
 | |
|   public int compareTo (Object o)
 | |
|   {
 | |
|     return compareTo ((Double) o);
 | |
|   }
 | |
| }
 |