当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.StrictMath.asin()用法及代码示例



描述

这个java.lang.StrictMath.asin() 方法返回一个值的反正弦。返回的角度在范围内-pi/2 through pi/2.它包括这些情况 -

  • 如果参数为 NaN 或其绝对值大于 1,则结果为 NaN。
  • 如果自变量为零,则结果为零,其符号与自变量相同。

声明

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

public static double asin(double a)

参数

a- 这是要返回其反正弦值的值。

返回值

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

异常

NA

示例

下面的例子展示了 java.lang.StrictMath.asin() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      double d1 = 0.90 , d2 = 5.00, d3 = 0;
   
      // returns the arc sine of a value
      double dAbsValue = StrictMath.asin(d1); 
      System.out.println("arc sine value of " + d1 + " = " + dAbsValue);

      // returns NaN if argument is NaN or its absolute value is greater than 1
      dAbsValue = StrictMath.asin(d2); 
      System.out.println("arc sine value of " + d2 + " = " + dAbsValue);

      // returns zero if the argument is 0
      dAbsValue = StrictMath.asin(d3); 
      System.out.println("arc sine value of " + d3 + " = " + dAbsValue);    
   }
}

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

arc sine value of 0.9 = 1.1197695149986342
arc sine value of 5.0 = NaN
arc sine value of 0.0 = 0.0

相关用法


注:本文由纯净天空筛选整理自 Java.lang.StrictMath.asin() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。