What is Strictfp modifier in Java?
What is Strictfp modifier in Java? Introduce in 1.2 version. We can declare Strictfp for classes and methods but not for variables. By using the strictfp keyword, we can ensure that floating point operations take place precisely. Usually, the result of floating point arithmetic is varied from platform to platform. . . . Read more