Hi,
I’ve been looking at the my class file in Jshrink, and I notice that float values like 0.03f get extracted to something like 0.029999999329447746. Clearly, this will take up bytes?
Is there a way to “trick” Java not to do that? I’ve tried to use (float)0.03 (double that is) but Java outsmarts me and makes it a float.
But why does it do this to floats anyway? Doesn’t do it to double :\