Java - StrictMath toDegrees(double x) 方法



描述

Java StrictMath toDegrees(double angrad) 方法将以弧度为单位测量的角度转换为近似等效的以度为单位测量的角度。从弧度到度的转换通常是不精确的;用户不应期望 cos(toRadians(90.0)) 完全等于 0.0。

声明

以下是 java.lang.StrictMath.toDegrees() 方法的声明

public static double toDegrees(double angrad)

参数

angrad − 以弧度为单位的角度

返回值

此方法返回以度为单位的角度 angrad 的度量。

异常

示例:获取正双精度值的度数

以下示例显示了对正双精度值使用 StrictMath toDegrees() 方法。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a double number
      double x = 45.0;

      // print the degree for this double
      System.out.println("StrictMath.toDegrees(" + x + ")=" + StrictMath.toDegrees(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.toDegrees(45.0)=2578.3100780887044

示例:获取负双精度值的度数

以下示例显示了使用 StrictMath toDegrees() 方法获取负双精度值的度数。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a double number
      double x = -45.0;

      // print the degree for this double
      System.out.println("StrictMath.toDegrees(" + x + ")=" + StrictMath.toDegrees(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.toDegrees(-45.0)=-2578.3100780887044

示例:获取零双精度值的度数

以下示例显示了使用 StrictMath toDegrees() 方法获取零双精度值的度数。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

      // print the degree for this double
      System.out.println("StrictMath.toDegrees(" + x + ")=" + StrictMath.toDegrees(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.toDegrees(0.0)=0.0
java_lang_strictmath.htm
广告