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


Java Java.lang.StrictMath.toDegrees()用法及代碼示例



描述

這個java.lang.StrictMath.toDegrees() 方法將以弧度為單位的角度轉換為以度為單位的近似等效的角度。從弧度到度的轉換通常是不準確的,用戶不應期望 cos(toRadians(90.0)) 恰好等於 0.0。

聲明

以下是聲明java.lang.StrictMath.toDegrees()方法

public static double toDegrees(double angrad)

參數

angrad─ 這是一個角度,以弧度表示

返回值

此方法以度為單位返回角度 angrad 的測量值。

異常

NA

示例

下麵的例子展示了 java.lang.StrictMath.toDegrees() 方法的用法。

package com.tutorialspoint;

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

相關用法


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