When should I use the “strictfp” keyword in java?
Strictfp ensures that you get exactly the same results from your floating point calculations on every platform. If you don’t use strictfp, the JVM implementation is free to use extra precision where available. From the JLS: Within an FP-strict expression, all intermediate values must be elements of the float value set or the double value … Read more