Groovy - Numbers toDegrees() 方法

该方法将参数值转换为度数。


语法

double toDegrees(double d)

参数

d - 双精度数据类型。


返回值

此方法返回一个双精度值。


示例

以下是该方法的用法示例 −

class Example { 
   static void main(String[] args) { 
      double x = 45.0; 
      double y = 30.0;
		
      System.out.println( Math.toDegrees(x) ); 
      System.out.println( Math.toDegrees(y) ); 
   } 
}

当我们运行上面的程序时,会得到下面的结果 −

2578.3100780887044 
1718.8733853924698

❮ Groovy 数字