toDegrees()
方法的语法为:
Math.toDegrees(double angle)
在这里, toDegrees()
是静态方法。因此,我们使用类名Math
来访问该方法。
toDegrees()参数
toDegrees()
方法采用单个参数。
- 角 -将转换为度的角弧度
toDegrees()返回值
- 返回以度为单位的角度
注意 :从弧度到度的转换是近似的。但是,它通常是不精确的。
示例:Java Math.toDegrees()
class Main {
public static void main(String[] args) {
// create variables
double angle1 = 30.0;
double angle2 = 45.0;
System.out.println(Math.toRadians(angle1)); // 0.5235987755982988
System.out.println(Math.toRadians(angle2)); // 0.7853981633974483
}
}
推荐的教程
- Math.toRadians()