java.lang.Math.toDegrees(double angrad) 轉換以弧度為單位,以度數測量的近似相等的角的角度。從弧度到度的轉換通常是不精確的; 使用者應該不期待 cos(toRadians(90.0)),恰好等於0.0。
以下是java.lang.Math.toDegrees()方法的宣告
public static double toDegrees(double angrad)
angrad -- 角度,以弧度為單位。
此方法返回測量的度角angrad。
NA
下面的例子顯示lang.Math.toDegrees()方法的使用。
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 degrees x = Math.toDegrees(x); y = Math.toDegrees(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(2578.3100780887044)=1.0 Math.tanh(-10313.240312354817)=-1.0