java.lang.StrictMath.sin()方法範例


java.lang.StrictMath.sin() 方法返回一個角度的正弦值。它包括以下情況:

  • 如果引數為NaN或無窮大,那麼結果為NaN。
  • 如果引數是零,那麼結果是引數為零相同的符號。

宣告

以下是java.lang.StrictMath.sin()方法的宣告

public static double sin(double a)

引數

  • a -- 這是一個角度,以弧度為單位。

返回值

這個方法返回引數的正弦值。

異常

  • NA

例子

下面的例子顯示java.lang.StrictMath.sin()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = (90*Math.PI)/180 , d2 = 0.0, d3 = (1.0/0.0) ;

    // returns the trigonometric sine of an angle 
    double sinValue = StrictMath.sin(d1); 
    System.out.println("Trigonometric sine of d1 = " + sinValue);
        
    sinValue = StrictMath.sin(d2); 
    System.out.println("Trigonometric sine of d2 = " + sinValue);
        
    sinValue = StrictMath.sin(d3); 
    System.out.println("Trigonometric sine of d3 = " + sinValue);
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Trigonometric sine of d1 = 1.0
Trigonometric sine of d2 = 0.0
Trigonometric sine of d3 = NaN