java.lang.Math.log replaced by intrinsic call, why not java.lang.Math.exp()?
问题 I'm reasking a question that had too little attention I think: Why does this simple code (simply a call to Math.log() ): Double thisdouble = Math.log(10); With a breakpoint on line 275 of Math.class of the jdk1.7.0_11: 274 public static double log(double a) { 275 return StrictMath.log(a); // default impl. delegates to StrictMath 276 } Not stop execution in debug mode? Can somebody try this on his/her own machine (I'm using Eclipse)? Calling Math.exp() and debugging the Math.exp (line 254)