java.lang.Math.toRadians()方法範例


java.lang.Math.toRadians(double angdeg) 轉換為度,以弧度為單位的近似等效角的角度。從角度到弧度的轉換通常是不精確的。

宣告

以下是java.lang.Math.toRadians()方法的宣告

public static double toRadians(double angdeg)

引數

  • angdeg --  角度,單位為弧度

返回值

此方法返回的測量弧度angdeg的角度。

異常

  • NA

例子

下面的例子顯示了lang.Math.toRadians()方法的使用。

package com.yiibai;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers numbers
      double x = 45;
      double y = -180;

      // convert them in radians
      x = Math.toRadians(x);
      y = Math.toRadians(y);

      // print the hyperbolic tangent of these doubles
      System.out.println("Math.tanh(" + x + ")=" + Math.tanh(x));
      System.out.println("Math.tanh(" + y + ")=" + Math.tanh(y));

   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Math.tanh(0.7853981633974483)=0.6557942026326724
Math.tanh(-3.141592653589793)=-0.99627207622075