我有一个小技术问题,打电话是一样的吗:
public static strictfp double myMethod(double phi){
return Math.exp(phi);
}
或者:
public static double myMethod(double phi){
return StrictMath.exp(phi);
}
还是该strictfp
关键字仅适用于+ - * /
方法内部使用的基本算术运算?