Java - Math toDegrees(double x) 方法



描述

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

声明

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

public static double toDegrees(double angrad)

参数

angrad − 以弧度表示的角度

返回值

此方法返回以度表示的角度 angrad 的度量。

异常

从正双精度值获取角度示例

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

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 45.0;

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

输出

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

Math.toDegrees(45.0)=2578.3100780887044

从负双精度值获取角度示例

以下示例演示了如何使用 Math toDegrees() 方法获取负双精度值的度数。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

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

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

输出

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

Math.toDegrees(-45.0)=-2578.3100780887044

从零双精度值获取角度示例

以下示例演示了如何使用 Math toDegrees() 方法获取零双精度值的度数。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

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

输出

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

Math.toDegrees(0.0)=0.0
java_lang_math.htm
广告