Java StrictMath toDegrees()方法

java.lang.StrictMath.toDegrees() 方法转换以弧度为单位,以度为单位的近似等效的角的角度。从弧度到度的转换通常是不精确的,用户不应该期望cos(toRadians(90.0)),恰好等于0.0。

1 语法

public static double toDegrees(double angrad)

2 参数

angrad : 这是一个角度,以弧度

3 返回值

此方法返回angrad的测量角的弧度。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath toDegrees()方法
 */
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

 

热门文章

优秀文章