位置:首頁 > Java技術 > java.lang > java.lang.StrictMath.atan()方法實例

java.lang.StrictMath.atan()方法實例

java.lang.StrictMath.atan() 方法返回一個反正切的值。返回的角度範圍為-pi/2到pi/2.它包括以下情況:

  • 如果參數為NaN,那麼結果為NaN。
  • 如果參數是0,那麼結果是相同參數符號為零。

聲明

以下是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