C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/lang/Float64.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_FLOAT64_HPP
00008 #define COH_FLOAT64_HPP
00009 
00010 #include "coherence/lang/compatibility.hpp"
00011 
00012 #include "coherence/lang/Number.hpp"
00013 #include "coherence/lang/Primitive.hpp"
00014 #include "coherence/lang/TypedHandle.hpp"
00015 
00016 COH_OPEN_NAMESPACE2(coherence,lang)
00017 
00018 
00019 /**
00020 * An immutable 64-bit floating-point value.
00021 *
00022 * @author jh  2008.04.01
00023 */
00024 class COH_EXPORT Float64
00025     : public cloneable_spec<Float64,
00026         extends<Primitive<float64_t> >,
00027         implements<Number, Comparable> >
00028     {
00029     friend class factory<Float64>;
00030 
00031     // ----- constructors ---------------------------------------------------
00032 
00033     private:
00034         /**
00035         * Create a new Float64 instance.
00036         *
00037         * @param dfl the value of the new Float64
00038         */
00039         Float64(float64_t dfl);
00040 
00041         /**
00042         * Copy constructor.
00043         */
00044         Float64(const Float64& that);
00045 
00046 
00047     // ----- Float64 interface ----------------------------------------------
00048 
00049     public:
00050         /**
00051         * Return a <code>uint64_t</code> representation of the specified
00052         * 64-bit floating point value according to the IEEE 754
00053         * floating-point "double format" bit layout.
00054         *
00055         * @param dfl  a 64-bit floating-point number
00056         *
00057         * @return the <code>uint64_t</code> representation of the
00058         *         floating-point number
00059         */
00060         static uint64_t float64ToBits(float64_t dfl);
00061 
00062         /**
00063         * Return the <code>float64_t</code> value corresponding to a given
00064         * bit representation. The argument is considered to be a representation
00065         * of a 64-bit floating-point value according to the IEEE 754
00066         * floating-point "double format" bit layout.
00067         *
00068         * @param l  a 64-bit unsigned integer containing the bit
00069         *           representation of the floating-point number
00070         *
00071         * @return the <code>float64_t</code> floating-point value with the
00072         *         same bit pattern.
00073         */
00074         static float64_t bitsToFloat64(uint64_t l);
00075 
00076 
00077     // ----- Number interface -----------------------------------------------
00078 
00079     public:
00080         /**
00081         * {@inheritDoc}
00082         */
00083         virtual int16_t getInt16Value() const;
00084 
00085         /**
00086         * {@inheritDoc}
00087         */
00088         virtual int32_t getInt32Value() const;
00089 
00090         /**
00091         * {@inheritDoc}
00092         */
00093         virtual int64_t getInt64Value() const;
00094 
00095         /**
00096         * {@inheritDoc}
00097         */
00098         virtual float32_t getFloat32Value() const;
00099 
00100         /**
00101         * {@inheritDoc}
00102         */
00103         virtual float64_t getFloat64Value() const;
00104 
00105 
00106     // ----- Comparable interface -------------------------------------------
00107 
00108     public:
00109         /**
00110         * {@inheritDoc}
00111         */
00112         virtual int32_t compareTo(Object::View v) const;
00113 
00114 
00115     // ----- Object interface -----------------------------------------------
00116 
00117     public:
00118         /**
00119         * {@inheritDoc}
00120         */
00121         virtual bool equals(Object::View v) const;
00122 
00123         /**
00124         * {@inheritDoc}
00125         */
00126         virtual size32_t hashCode() const;
00127 
00128 
00129     // ----- static methods -------------------------------------------------
00130 
00131     public:
00132         /**
00133         * Factory method to produce Float64 objects with an optimization
00134         * that uses cached objects for all common numbers.
00135         *
00136         * @param dfl  a float64_t
00137         *
00138         * @return a Float64 whose value is the passed float64_t
00139         */
00140         static Handle valueOf(float64_t fl);
00141 
00142         /**
00143         * Test whether the given float64_t is a NaN.
00144         *
00145         * @param dfl  a float64_t to test
00146         *
00147         * @return true if the given float64_t is a Nan, else return false
00148         */
00149         static bool isNaN(float64_t dfl);
00150 
00151         /**
00152         * Test whether the given float64_t is -0.0 or 0.0.
00153         *
00154         * @param dfl  a float64_t to test
00155         *
00156         * @return true if the given float64_t is a zero, else return false
00157         */
00158         static bool isZero(float64_t dfl);
00159 
00160         /**
00161         * Test whether the given float64_t is -infinity or +infinity
00162         *
00163         * @param dfl  a float64_t to test
00164         *
00165         * @return true if the given float64_t is infinity else return false
00166         */
00167         static bool isInfinite(float64_t dfl);
00168 
00169         /**
00170         * Compare the given float32_t values for order. Return a negative
00171         * integer, zero, or a positive integer if the left value is
00172         * less than, equal to, or greater than the right. The comparison
00173         * is based on the following order:
00174         * -infinity < -0.0 < +0.0 < +infinity < NaN
00175         *
00176         * @param dfll  the left hand value to be compared
00177         * @param dflr  the right hand value to be compared
00178         *
00179         *
00180         * @return a negative integer, zero, or a positive integer if the
00181         *         left value is less than, equal to, or greater than the
00182         *         right value
00183         */
00184         static int32_t compare(float64_t dfll, float64_t dflr);
00185 
00186     // ---- constants -------------------------------------------------------
00187 
00188     public:
00189         /**
00190         * Return a constant holding the Not-a-Number (NaN) value of type
00191         * <code>float64_t</code>. It is equivalent to the value returned by
00192         * <code>Float64::bitsToFloat64(((uint64_t) 0x7FF80000) << 32)</code>.
00193         *
00194         * @return the <code>float64_t</code> NaN value
00195         */
00196         static float64_t getNaN();
00197 
00198         /**
00199         * Return a constant holding the positive infinity value of type
00200         * <code>float64_t</code>. It is equal to the value returned by
00201         * <code>Float64::bitsToFloat64(((uint64_t) 0x7FF00000) << 32)</code>.
00202         *
00203         * @return the <code>float64_t</code> positive infinity value
00204         */
00205         static float64_t getPositiveInfinity();
00206 
00207         /**
00208         * Returns a constant holding the negative infinity value of type
00209         * <code>float64_t</code>. It is equal to the value returned by
00210         * <code>Float64::bitsToFloat64(((uint64_t) 0xFFF00000) << 32)</code>.
00211         *
00212         * @return the <code>float64_t</code> negative infinity  value
00213         */
00214         static float64_t getNegativeInfinity();
00215     };
00216 
00217 COH_CLOSE_NAMESPACE2
00218 
00219 #endif // COH_FLOAT64_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.