Java Match.toDegrees()
方法 是三角函数辅助方法,用于将弧度转为角度。常用于计算三角函数的转换。
它是Java Math.toRadians() 方法的反函数。
语法
语法如下:public static double toDegrees(double angrad)
参数
- angrad:弧度值
返回值
返回弧度所对应的角度。
例子
public class MathToRadiansExample {
public static void main(String[] args) {
//弧度值
double a = 0.5235987755982988;
double b = 0.7853981633974483;
double c = 1.0471975511965976;
double d = 1.5707963267948966;
//转换为角度值
a = Math.toDegrees(a);
b = Math.toDegrees(b);
c = Math.toDegrees(c);
d = Math.toDegrees(d);
System.out.println("30度:"+a);
System.out.println("45度:"+b);
System.out.println("60度:"+c);
System.out.println("90度:"+d);
}
}
输出:
30度:29.999999999999996
45度:45.0
60度:59.99999999999999
90度:90.0
45度:45.0
60度:59.99999999999999
90度:90.0