Java - StrictMath toRadians(double x) 方法



描述

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

声明

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

public static double toRadians(double angdeg)

参数

angdeg − 以度为单位的角度

返回值

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

异常

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

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

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

      // get a double number
      double x = 45.0;

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

输出

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

StrictMath.toRadians(45.0)=0.7853981633974483

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

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

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

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

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

输出

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

StrictMath.toRadians(-45.0)=-0.7853981633974483

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

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

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

      // get a double number
      double x = 0.0;

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

输出

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

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