activemq-cpp-3.6.0
|
#include <src/main/decaf/lang/Float.h>
Public Member Functions | |
Float (float value) | |
Float (double value) | |
Float (const std::string &value) | |
virtual | ~Float () |
virtual int | compareTo (const Float &f) const |
Compares this Float instance with another. | |
bool | equals (const Float &f) const |
virtual bool | operator== (const Float &f) const |
Compares equality between this object and the one passed. | |
virtual bool | operator< (const Float &f) const |
Compares this object to another and returns true if this object is considered to be less than the one passed. | |
virtual int | compareTo (const float &f) const |
Compares this Float instance with another. | |
bool | equals (const float &f) const |
virtual bool | operator== (const float &f) const |
Compares equality between this object and the one passed. | |
virtual bool | operator< (const float &f) const |
Compares this object to another and returns true if this object is considered to be less than the one passed. | |
std::string | toString () const |
virtual double | doubleValue () const |
Answers the double value which the receiver represents. | |
virtual float | floatValue () const |
Answers the float value which the receiver represents. | |
virtual unsigned char | byteValue () const |
Answers the byte value which the receiver represents. | |
virtual short | shortValue () const |
Answers the short value which the receiver represents. | |
virtual int | intValue () const |
Answers the int value which the receiver represents. | |
virtual long long | longValue () const |
Answers the long value which the receiver represents. | |
bool | isInfinite () const |
bool | isNaN () const |
![]() | |
virtual | ~Number () |
![]() | |
virtual | ~Comparable () |
![]() | |
virtual | ~Comparable () |
Static Public Member Functions | |
static int | compare (float f1, float f2) |
Compares the two specified double values. | |
static int | floatToIntBits (float value) |
Returns a representation of the specified floating-point value according to the IEEE 754 floating-point "single format" bit layout. | |
static int | floatToRawIntBits (float value) |
Returns a representation of the specified floating-point value according to the IEEE 754 floating-point "single format" bit layout, preserving Not-a-Number (NaN) values. | |
static float | intBitsToFloat (int bits) |
Returns the float value corresponding to a given bit representation. | |
static bool | isInfinite (float value) |
static bool | isNaN (float value) |
static float | parseFloat (const std::string &value) |
Returns a new float initialized to the value represented by the specified string, as performed by the valueOf method of class Float. | |
static std::string | toHexString (float value) |
Returns a hexadecimal string representation of the float argument. | |
static std::string | toString (float value) |
Returns a string representation of the float argument. | |
static Float | valueOf (float value) |
Returns a Float instance representing the specified float value. | |
static Float | valueOf (const std::string &value) |
Returns a Float instance that wraps a primitive float which is parsed from the string value passed. |
Static Public Attributes | |
static const int | SIZE = 32 |
The size in bits of the primitive int type. | |
static const float | MAX_VALUE |
The maximum value that the primitive type can hold. | |
static const float | MIN_VALUE |
The minimum value that the primitive type can hold. | |
static const float | NaN |
Constant for the Not a Number Value. | |
static const float | POSITIVE_INFINITY |
Constant for Positive Infinity. | |
static const float | NEGATIVE_INFINITY |
Constant for Negative Infinity. |
decaf::lang::Float::Float | ( | float | value | ) |
value | - the primitive type to wrap |
decaf::lang::Float::Float | ( | double | value | ) |
value | - the primitive type to wrap |
decaf::lang::Float::Float | ( | const std::string & | value | ) |
value | - the string to convert to a primitive type to wrap |
|
inlinevirtual |
|
inlinevirtual |
Answers the byte value which the receiver represents.
Reimplemented from decaf::lang::Number.
|
static |
Compares the two specified double values.
The sign of the integer value returned is the same as that of the integer that would be returned by the call: Float( f1 ).compareTo( Float( f2) )
f1 | - the first double to compare |
f2 | - the second double to compare |
Compares this Float instance with another.
f | - the Float instance to be compared |
Implements decaf::lang::Comparable< Float >.
|
virtual |
Compares this Float instance with another.
f | - the Float instance to be compared |
Implements decaf::lang::Comparable< float >.
|
inlinevirtual |
Answers the double value which the receiver represents.
Implements decaf::lang::Number.
f | - the Float object to compare against. |
Implements decaf::lang::Comparable< Float >.
|
inlinevirtual |
f | - the Float object to compare against. |
Implements decaf::lang::Comparable< float >.
|
static |
Returns a representation of the specified floating-point value according to the IEEE 754 floating-point "single format" bit layout.
Bit 31 (the bit that is selected by the mask 0x80000000) represents the sign of the floating-point number. Bits 30-23 (the bits that are selected by the mask 0x7f800000) represent the exponent. Bits 22-0 (the bits that are selected by the mask 0x007fffff) represent the significand (sometimes called the mantissa) of the floating-point number.
If the argument is positive infinity, the result is 0x7f800000. If the argument is negative infinity, the result is 0xff800000. If the argument is NaN, the result is 0x7fc00000.
In all cases, the result is an integer that, when given to the intBitsToFloat(int) method, will produce a floating-point value the same as the argument to floatToIntBits (except all NaN values are collapsed to a single "canonical" NaN value).
value | - the float to convert to int bits |
Referenced by decaf::util::HashCode< float >::operator()().
|
static |
Returns a representation of the specified floating-point value according to the IEEE 754 floating-point "single format" bit layout, preserving Not-a-Number (NaN) values.
Bit 31 (the bit that is selected by the mask 0x80000000) represents the sign of the floating-point number. Bits 30-23 (the bits that are selected by the mask 0x7f800000) represent the exponent. Bits 22-0 (the bits that are selected by the mask 0x007fffff) represent the significand (sometimes called the mantissa) of the floating-point number.
If the argument is positive infinity, the result is 0x7f800000. If the argument is negative infinity, the result is 0xff800000. If the argument is NaN, the result is the integer representing the actual NaN value. Unlike the floatToIntBits method, intToRawIntBits does not collapse all the bit patterns encoding a NaN to a single "canonical" NaN value.
In all cases, the result is an integer that, when given to the intBitsToFloat(int) method, will produce a floating-point value the same as the argument to floatToRawIntBits.
value | The float to convert to a raw int. |
|
inlinevirtual |
Answers the float value which the receiver represents.
Implements decaf::lang::Number.
|
static |
Returns the float value corresponding to a given bit representation.
The argument is considered to be a representation of a floating-point value according to the IEEE 754 floating-point "single format" bit layout.
If the argument is 0x7f800000, the result is positive infinity. If the argument is 0xff800000, the result is negative infinity. If the argument is any value in the range 0x7f800001 through 0x7fffffff or in the range 0xff800001 through 0xffffffff, the result is a NaN. No IEEE 754 floating-point operation provided by C++ can distinguish between two NaN values of the same type with different bit patterns. Distinct values of NaN are only distinguishable by use of the Float::floatToRawIntBits method.
bits | - the bits of the float encoded as a float |
|
inlinevirtual |
Answers the int value which the receiver represents.
Implements decaf::lang::Number.
bool decaf::lang::Float::isInfinite | ( | ) | const |
|
static |
value | - The float to check. |
bool decaf::lang::Float::isNaN | ( | ) | const |
|
static |
value | - The float to check. |
|
inlinevirtual |
Answers the long value which the receiver represents.
Implements decaf::lang::Number.
Compares this object to another and returns true if this object is considered to be less than the one passed.
This
f | - the value to be compared to this one. |
Implements decaf::lang::Comparable< Float >.
|
inlinevirtual |
Compares this object to another and returns true if this object is considered to be less than the one passed.
This
f | - the value to be compared to this one. |
Implements decaf::lang::Comparable< float >.
Compares equality between this object and the one passed.
f | - the value to be compared to this one. |
Implements decaf::lang::Comparable< Float >.
|
inlinevirtual |
Compares equality between this object and the one passed.
f | - the value to be compared to this one. |
Implements decaf::lang::Comparable< float >.
|
static |
Returns a new float initialized to the value represented by the specified string, as performed by the valueOf method of class Float.
value | - the string to parse |
NumberFormatException |
|
inlinevirtual |
Answers the short value which the receiver represents.
Reimplemented from decaf::lang::Number.
|
static |
Returns a hexadecimal string representation of the float argument.
All characters mentioned below are ASCII characters.
value | - The float to convert to a string |
std::string decaf::lang::Float::toString | ( | ) | const |
|
static |
Returns a string representation of the float argument.
All characters mentioned below are ASCII characters.
If the argument is NaN, the result is the string "NaN". Otherwise, the result is a string that represents the sign and magnitude (absolute value) of the argument. If the sign is negative, the first character of the result is '-'; if the sign is positive, no sign character appears in the result. As for the magnitude m: o If m is infinity, it is represented by the characters "Infinity"; thus, positive infinity produces the result "Infinity" and negative infinity produces the result "-Infinity". o If m is zero, it is represented by the characters "0.0"; thus, negative zero produces the result "-0.0" and positive zero produces the result "0.0". o If m is greater than or equal to 10-3 but less than 107, then it is represented as the integer part of m, in decimal form with no leading zeroes, followed by '.', followed by one or more decimal digits representing the fractional part of m. o If m is less than 10-3 or greater than or equal to 107, then it is represented in so-called "computerized scientific notation." Let n be the unique integer such that 10n <= m < 10n+1; then let a be the mathematically exact quotient of m and 10n so that 1 <= a < 10. The magnitude is then represented as the integer part of a, as a single decimal digit, followed by '.', followed by decimal digits representing the fractional part of a, followed by the letter 'E', followed by a representation of n as a decimal integer, as produced by the method Integer.toString(int).
value | - The float to convert to a string |
|
static |
|
static |
The maximum value that the primitive type can hold.
|
static |
The minimum value that the primitive type can hold.
|
static |
Constant for Negative Infinity.
|
static |
Constant for Positive Infinity.
|
static |
The size in bits of the primitive int type.