Java - Math asin(double) 方法



描述

Java Math asin(double a) 返回角度的反正弦值,范围在 -pi/2 到 pi/2 之间。特殊情况:

  • 如果参数是 NaN 或其绝对值大于 1,则结果为 NaN。

  • 如果参数为零,则结果为与参数符号相同的零。

结果必须在正确舍入结果的 1 ulp 范围内。结果必须是半单调的。

声明

以下是java.lang.Math.asin() 方法的声明

public static double asin(double a)

参数

a − 将返回其反正弦的值。

返回值

此方法返回参数的反正弦。

异常

获取角度反正弦示例

以下示例演示了 Math asin() 方法的使用。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a variable x which is equal to PI/2
      double x = Math.PI / 2;

      // convert x to radians
      x = Math.toRadians(x);

      // get the arc sine of x
      System.out.println("Math.asin(" + x + ")=" + Math.asin(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Math.asin(0.027415567780803774)=0.02741900326072046

获取0°角的反正弦示例

以下示例演示了 0°角的 Math asin() 方法的使用。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a variable x which is equal to zero
      double x = 0.0d;

      // convert x to radians
      x = Math.toRadians(x);

      // get the arc sine of x
      System.out.println("Math.asin(" + x + ")=" + Math.asin(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Math.asin(0.0)=0.0

获取45°角的反正弦示例

以下示例演示了 45°角的 Math asin() 方法的使用。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a variable x which is equal to zero
      double x = 45.0d;

      // convert x to radians
      x = Math.toRadians(x);

      // get the arc sine of x
      System.out.println("Math.asin(" + x + ")=" + Math.asin(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Math.asin(0.7853981633974483)=0.9033391107665127
java_lang_math.htm
广告