Converts the specified float value to a binary representation conforming to the IEEE 754 floating-point single precision bit layout. Not-a-Number (NaN) values are preserved. @param value the float value to convert. @return the IEEE 754 floating-point single precision representat
(float value)
| 188 | * @see #intBitsToFloat(int) |
| 189 | */ |
| 190 | public static native int floatToRawIntBits(float value); |
| 191 | |
| 192 | /** |
| 193 | * Gets the primitive value of this float. |