Java- /variable/ 的符号

Java- Notation for /variable/

在java中写一个方法时,我注意到这两个函数return具有相同的值。

// Riemann-Siegel theta function using the approximation by the Stirling series
public static double theta (double t) {
return (t/2.0 * StrictMath.log(t/2.0/StrictMath.PI) - t/2.0
    - StrictMath.PI/8.0 + 1.0/48.0/t + 7.0/5760.0/t/t/t);
}

// Riemann-Siegel theta function using the approximation by the Stirling series
public static double theta2 (double t) {
return (t/2.0 * Math.log(t/(2.0*Math.PI)) - t/2.0
    - Math.PI/8.0 + 1.0/(48.0*Math.pow(t, 1)) + 7.0/(5760*Math.pow(t, 3)));
}

什么是

7.0/5760.0/t/t/t

在做什么?为什么这与 7.0/(5760*t^3) 相同?

表达式 7.0/5760.0/t1/t2/t3 将从 L-R 计算。 喜欢-

r=(7.0/5760.0)
r1=(result/t1)
r2=(r1/t2)
r3=(r2/t3)

r3 是你的最终结果

如果你有像 8/2*2*2 这样的表达式,它的计算方式与我之前解释的相同,但在 8/2*(2*2) 中,表达式 (2*2) 将首先计算,因为 perathesis 具有更高的优先级然后 /。 它也适用于 math.pow() 函数,因为函数也具有比运算符更高的优先级。