Java中StrictMath类的java.lang.StrictMath.toDegrees()方法用于接受以弧度为单位的角度作为参数,并返回以度为单位的近似等效角度。因此,本质上它将弧度转换为度。这种转换通常是不精确的。
用法:
public static double toDegrees(double rad)
参数:此函数接受单个参数rad,该参数rad以弧度表示要转换为等效角度的角度。
返回值:此方法返回以度为单位传递的角度的测量值。
例子:
Input : 2.0 Output : 114.59155902616465 Input : 0.007022 Output : 0.4023309637408641
以下程序说明了Java中的java.lang.StrictMath.toDegrees()方法:
示例1:
// Java Program to illustrate StrictMath.toDegrees()
// function
import java.io.*;
import java.lang.*;
class GFG {
public static void main(String[] args)
{
double rad = 3.0009871008;
double deg = StrictMath.toDegrees(rad);
System.out.println("Value in degrees of " +
rad + " radians is " + deg);
}
}
输出:
Value in degrees of 3.0009871008 radians is 171.943895249041
示例2:
// Java Program to illustrate StrictMath.toDegrees()
// function
import java.io.*;
import java.lang.*;
class GFG {
public static void main(String[] args)
{
double rad = 1.0;
double deg = StrictMath.toDegrees(rad);
System.out.println("Value in degrees of " +
rad + " radians is " + deg);
}
}
输出:
Value in degrees of 1.0 radians is 57.29577951308232
参考: https://docs.oracle.com/javase/8/docs/api/java/lang/StrictMath.html#toDegrees()
相关用法
- Java toDegrees()用法及代码示例
- Java StrictMath exp()用法及代码示例
- Java StrictMath tan()用法及代码示例
- Java StrictMath sin()用法及代码示例
- Java StrictMath log()用法及代码示例
- Java StrictMath pow()用法及代码示例
- Java StrictMath cosh()用法及代码示例
- Java StrictMath cos()用法及代码示例
- Java StrictMath fma()用法及代码示例
- Java StrictMath max()用法及代码示例
- Java StrictMath cbrt()用法及代码示例
- Java StrictMath floor()用法及代码示例
- Java StrictMath nextDown()用法及代码示例
- Java StrictMath round()用法及代码示例
注:本文由纯净天空筛选整理自RICHIK BHATTACHARJEE大神的英文原创作品 StrictMath toDegrees() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。