I have a little technical question, is it the same to call:
public static strictfp double myMethod(double phi){
return Math.exp(phi);
}
or:
public static double myMethod(double phi){
return StrictMath.exp(phi);
}
Or does the strictfp
keyword just applies to the basic arithmetic operations + - * /
used inside the method?