Returns the bit representation of a single-float value. The result is a representation of the floating-point argument according to the IEEE 754 floating-point "single precision" bit layout. Bit 31 (the bit that is selected by the mask 0x80000000) represents the sign of the floating-point number. Bit
(float value)
| 106 | * method, will produce a floating-point value equal to the argument to floatToIntBits. |
| 107 | */ |
| 108 | public native static int floatToIntBits(float value); |
| 109 | |
| 110 | /** |
| 111 | * Returns the float value of this Float object. |