strictfp keyword in java

The “strictfp” keyword in Java is used to force the precision of floating point calculations (both float and double) in Java conform to IEEE standard, explicitly. If we don’t use strictfp keyword, the floating point precision value will be taken from the target platform’s hardware, i.e. CPU’s floating point processing capability. In other words, If […]

Share this article on