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.toIntExact()用法及代码示例
- Java Math.toRadians()用法及代码示例
- Java Math.tan()用法及代码示例
- Java Math.tanh()用法及代码示例
- Java Math.multiplyExact()用法及代码示例
- Java Math.rint()用法及代码示例
- Java Math.nextUp()用法及代码示例
- Java Math.asin()用法及代码示例
- Java Math.atan()用法及代码示例
- Java Math.nextAfter()用法及代码示例
- Java Math.exp()用法及代码示例
- Java Math.getExponent()用法及代码示例
- Java Math.IEEEremainder()用法及代码示例
- Java Math.sqrt()用法及代码示例
- Java Math.incrementExact()用法及代码示例
- Java Math.min()用法及代码示例
- Java Math.log()用法及代码示例
- Java Math.log1p()用法及代码示例
- Java Math.signum()用法及代码示例
- Java Math.copySign()用法及代码示例
注:本文由纯净天空筛选整理自 Java Math.toDegrees() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。