當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。