有人解釋關鍵字strictfp
在下面的類中意味着什麼?關鍵字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);
}
}
@Karthikeyan Vaithilingam我也發現這個[什麼是strictfp修飾符?什麼時候我會考慮使用它?](http://www.jguru.com/faq/view.jsp?EID=17544) – hulk