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.toDegrees()用法及代码示例
- Java Math.toIntExact()用法及代码示例
- 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.toRadians() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。