Java Math.toDegrees() 方法

java.lang.Math.toDegrees() 是一个Java内置的数学函数,用来以弧度为单位的角度转换为度数测量的近似相等的角度。

1 语法

public static double toDegrees(double x)  

2 参数

x :角度,以弧度为单位  

3 返回值

返回以度为单位的角度x的测量值。  

  • 如果参数为NaN,则此方法将返回NaN。
  • 如果参数为零,则此方法将返回零,且符号与参数相同。
  • 如果参数为无穷大,则此方法将返回与参数具有相同符号的无穷大。

4 示例1

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
public class Demo
{
    public static void main(String[] args)
    {
        double x = Math.PI;
        // 以度为单位转换PI的值
        System.out.println(Math.toDegrees(x));
    }
}

输出结果为:

180.0

5 示例2

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
public class Demo
{
    public static void main(String[] args)
    {
        double x = (Math.PI)/2;
        // 以度为单位转换PI的值  
        System.out.println(Math.toDegrees(x));
    }
}

输出结果为:

90.0

6 示例3

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
public class Demo
{
    public static void main(String[] args)
    {
        double x = -1.0/0;
        // 输入负无穷大,输出负无穷大  
        System.out.println(Math.toDegrees(x));
    }
}

输出结果为:

-Infinity

7 示例4

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
public class Demo
{
    public static void main(String[] args)
    {
        double x = 0.0;
        // 输入正零,输出正零  
        System.out.println(Math.toDegrees(x));
    }
}

输出结果为:

0.0

 

热门文章

优秀文章