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


Java Math.toRadians()用法及代碼示例


java.lang.Math.toRadians() 是 java 中的 內置 數學函數,用於將以度為單位的角度轉換為以弧度為單位的近似等效角度。

用法

public static double toRadians(double x)

參數

x = an angle, in degrees

返回

It returns the measurement of the angle x in radians.
  • 如果參數為 NaN,則此方法將返回 NaN。
  • 如果參數為零,此方法將返回與參數相同符號的零。
  • 如果參數為無窮大,則此方法將返回與參數相同符號的無窮大。

例子1

public class ToRadiansExample1
{
    public static void main(String[] args) 
    {
        double x = 180.0;
        // converting x from degree to radian
        System.out.println(Math.toRadians(x));
    }
}

輸出:

3.141592653589793

例子2

public class ToRadiansExample2
{
    public static void main(String[] args) 
    {
        double x = 120.0;
        // converting x from degree to radian
        System.out.println(Math.toRadians(x));
    }
}

輸出:

2.0943951023931953

例子3

public class ToRadiansExample3
{
    public static void main(String[] args) 
    {
        double x = Double.MAX_VALUE;
        // converting x from degree to radian
        System.out.println(Math.toRadians(x));
    }
}

輸出:

3.1375664143845866E306

示例 4

public class ToRadiansExample4
{
    public static void main(String[] args) 
    {
         double a = -1.0/0.0;
        // Input negative infinity, Output negative infinity
        System.out.println(Math.toRadians(a));
    }
}

輸出:

-Infinity






相關用法


注:本文由純淨天空篩選整理自 Java Math.toRadians() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。