當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。