Java.lang.StrictMath.toDegrees() 方法

描述

java.lang.StrictMath.toDegrees() 方法将以弧度测量的角度转换为以度为单位测量的大致等效角度。 从弧度到度数的转换通常是不精确的,用户不应期望 cos(toRadians(90.0)) 完全等于 0.0。


声明

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

public static double toDegrees(double angrad)

参数

angrad − 这是一个角度,单位为弧度


返回值

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


异常

NA


示例

下面的例子展示了 java.lang.StrictMath.toDegrees() 方法的使用。

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      double d1 = 1.5707963267948966 , d2 = 0.0;
   
      /* converts an angle in radians to an approximately equivalent angle
         in degree.*/

      double degreeValue = StrictMath.toDegrees(d1); 
      System.out.println("Degree value of d1 : " + degreeValue);

      degreeValue = StrictMath.toDegrees(d2); 
      System.out.println("Degree value of d2 : " + degreeValue);
   }
}

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

Degree value of angel d1 : 90.0
Degree value of angel d2 : 0.0