java.lang.Math.toDegrees()用于将以弧度为单位的角度转换为以度为单位的近似等效角度。
注意:从弧度到度的转换通常不精确;用户不应期望cos(toRadians(90.0))完全等于0.0。
用法:
public static double toDegrees(double rad) Parameter: rad:This parameter is an angle in radians which we want to convert in degrees. Return: This method returns the measurement of the angle rad in degrees.
例:显示java.lang.Math.toDegrees()方法的用法。
// Java program to demonstrate working
// of java.lang.Math.toDegrees() method
import java.lang.Math;
class Gfg {
// driver code
public static void main(String args[])
{
// value of PI in degrees
double rad = Math.PI;
System.out.println(Math.toDegrees(rad));
// value of PI/2 in degrees
rad = (Math.PI) / 2;
System.out.println(Math.toDegrees(rad));
// value of PI/4 in degrees
rad = (Math.PI) / 4;
System.out.println(Math.toDegrees(rad));
}
}
输出:
180.0 90.0 45.0
相关用法
- Java StrictMath toDegrees()用法及代码示例
- Java Collections.singleton()用法及代码示例
- Java Math asin()用法及代码示例
- Java String isEmpty()用法及代码示例
- Java String contains()用法及代码示例
- Java Math log()用法及代码示例
- Java String charAt()用法及代码示例
- Java Math hypot()用法及代码示例
- Java Math exp()用法及代码示例
- Java Math getExponent()用法及代码示例
- Java Math getExponent()用法及代码示例
- Java Math expm1()用法及代码示例
- Java String trim()用法及代码示例
- Java Math round()用法及代码示例
- Java Math pow()用法及代码示例
- Java toRadians()用法及代码示例
- Java Math nextAfter()用法及代码示例
- Java Integer.numberOfLeadingZeros()用法及代码示例
- Java Integer.numberOfTrailingZeros()用法及代码示例
- Java Short byteValue()用法及代码示例
- Java Short floatValue()用法及代码示例
- Java Short longValue()用法及代码示例
注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 Java toDegrees() method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。