有人解释关键字strictfp
在下面的课程中的含义是什么?
public strictfp class Demo {
public static void main(String[] args) {
double d = 8e+307;
/** affiche 4 * d /2 donc 2 * d */
System.out.println(4 * d / 2);
/** affiche 2 * d */
System.out.println(2 * d);
}
}
答案 0 :(得分:5)
Java strictfp关键字确保如果在浮点变量中执行操作,您将在每个平台上获得相同的结果.ptrictfp关键字可以应用于方法,类和接口。
strictfp class A{}//strictfp applied on class
strictfp interface M{}//strictfp applied on interface
class A{
strictfp void m(){}//strictfp applied on method
}
strictfp关键字不能应用于抽象方法,变量或构造函数。
class B{
strictfp abstract void m();//Illegal combination of modifiers
}
class B{
strictfp int data=10;//modifier strictfp not allowed here
}
class B{
strictfp B(){}//modifier strictfp not allowed here
}