Java - Math toRadians(double x) 方法



描述

Java Math toRadians(double angdeg) 方法将以度为单位测量的角度转换为近似等效的以弧度为单位测量的角度。度到弧度的转换通常是不精确的。

声明

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

public static double toRadians(double angdeg)

参数

angdeg − 以度为单位的角度

返回值

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

异常

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

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

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 45.0;

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

输出

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

Math.toRadians(45.0)=0.7853981633974483

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

以下示例演示了使用 Math toRadians() 方法获取负双精度值的弧度。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

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

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

输出

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

Math.toRadians(-45.0)=-0.7853981633974483

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

以下示例演示了使用 Math toRadians() 方法获取零双精度值的弧度。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

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

输出

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

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