Java StrictMath tan() 方法



描述

Java StrictMath tan(double a) 返回角度的三角函数正切值。特殊情况 -

  • 如果参数是 NaN 或无穷大,则结果为 NaN。

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

计算结果必须在精确结果的 1 ulp 内。结果必须是半单调的。

声明

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

public static double tan(double a)

参数

a − 以弧度为单位的角度。

返回值

此方法返回参数的正切值。

异常

示例:获取正双精度值的正切值

以下示例演示了如何使用 StrictMath tan() 方法获取正双精度值的正切值。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a double number
      double x = 45.0;

      // convert it to radian
      x = StrictMath.toRadians(x);

      // print the tangent for this double
      System.out.println("StrictMath.tan(" + x + ")=" + StrictMath.tan(x));
   }
}

输出

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

StrictMath.tan(0.7853981633974483)=0.9999999999999999

示例:获取负双精度值的正切值

以下示例演示了如何使用 StrictMath tan() 方法获取负双精度值的正切值。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a double number
      double x = -45.0;

      // convert it to radian
      x = StrictMath.toRadians(x);

      // print the tangent for this double
      System.out.println("StrictMath.tan(" + x + ")=" + StrictMath.tan(x));
   }
}

输出

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

StrictMath.tan(-0.7853981633974483)=-0.9999999999999999

示例:获取零双精度值的正切值

以下示例演示了如何使用 StrictMath tan() 方法获取零双精度值的正切值。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

      // convert it to radian
      x = StrictMath.toRadians(x);

      // print the hyperbolic tangent for this double
      System.out.println("StrictMath.tan(" + x + ")=" + StrictMath.tan(x));
   }
}

输出

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

StrictMath.tan(0.0)=0.0
java_lang_strictmath.htm
广告