当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math.toDegrees()用法及代码示例


java.lang.Math.toDegrees() 是 java 中的 内置 数学函数,用于将以弧度为单位的角度转换为以度为单位的近似等效角度。

用法

public static double toDegrees(double x)

参数

x = an angle, in radians

返回

It returns the measurement of the angle x in degrees.
  • 如果参数为 NaN,则此方法将返回 NaN。
  • 如果参数为零,此方法将返回与参数相同符号的零。
  • 如果参数为无穷大,则此方法将返回与参数相同符号的无穷大。

例子1

public class ToDegreesExample1
{
    public static void main(String[] args) 
    {
        double x = Math.PI;
        // converting value of PI in degrees
        System.out.println(Math.toDegrees(x));
    }
}

输出:

180.0

例子2

public class ToDegreesExample2
{
    public static void main(String[] args) 
    {
        double x = (Math.PI)/2;
        // converting value of PI in degrees
        System.out.println(Math.toDegrees(x));
    }
}

输出:

90.0

例子3

public class ToDegreesExample3
{
    public static void main(String[] args) 
    {
        double x = -1.0/0;
        // Input negative infinity, Output negative infinity
        System.out.println(Math.toDegrees(x));
    }
}

输出:

-Infinity

示例 4

public class ToDegreesExample4
{
    public static void main(String[] args) 
    {
        double x = 0.0;
        // Input positive zero, Output positive zero
        System.out.println(Math.toDegrees(x));
    }
}

输出:

0.0






相关用法


注:本文由纯净天空筛选整理自 Java Math.toDegrees() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。