java.lang.StrictMath.atan() 方法返回一個反正切的值。返回的角度範圍為-pi/2到pi/2.它包括以下情況:
以下是java.lang.StrictMath.atan()方法的宣告
public static double atan(double a)
a -- 這是要返回其反正切值的引數。
此方法返回引數的反正切值。
NA
下面的例子顯示java.lang.StrictMath.atan()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 0.20 , d2 = 60.00, d3 = 0; /* returns the arc tangent of a value, returned angle range is -pi/2 to pi/2 */ double dAbsValue = StrictMath.atan(d1); System.out.println("arc tangent of " + d1 + " = " + dAbsValue); dAbsValue = StrictMath.atan(d2); System.out.println("arc tangent of " + d2 + " = " + dAbsValue); dAbsValue = StrictMath.atan(d3); System.out.println("arc tangent of " + d3 + " = " + dAbsValue); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
arc tangent of 0.2 = 0.19739555984988078 arc tangent of 60.0 = 1.554131203080956 arc tangent of 0.0 = 0.0