The JRE documentation says that the native function Float.floatToRawIntBits(Float value) ...
Returns a representation of the specified floating point value according to the IEEE 754 "single format" floating point bitmap, storing Not-a-Number (NaN) values.
What is the "single format" bitmap? I have never heard this expression.
I gave an example:
float f = 1; System.out.println(Float.floatToRawIntBits(f));
What are the outputs of 1065353216 .
What does this function actually do?
source share