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


Java Math.acos()用法及代码示例


java.lang.Math.acos() 用于计算角度的三角反余弦。反余弦也称为余弦的倒数。此方法返回 0.0 和 pi 之间的值。

用法

public static double acos(double a)

参数

a = the value whose arc cosine is to be returned.

返回

It returns the arc cosine of the argument.
  • 如果参数是正数或负数,此方法将返回反余弦值。
  • 如果参数为 NaN 或超出范围 -1 和 1,则此方法将返回 NaN。

例子1

public class AcosExample1
{
    public static void main(String[] args) 
    {
        double a = 1.0;
        System.out.println(Math.acos(a));
    }
}

输出:

0.0

例子2

public class AcosExample2
{
    public static void main(String[] args) 
    {
        double a = -1.0;
        System.out.println(Math.acos(a));
    }
}

输出:

3.141592653589793

例子3

public class AcosExample3
{
    public static void main(String[] args) 
    {
        double a = 1.380;
        // value of a is greater than 1 so Output is NaN
        System.out.println(Math.acos(a));
    }
}

输出:

NaN

示例 4

public class AcosExample4
{
    public static void main(String[] args) 
    {
        double a = Math.PI;
        // return NaN because Math.PI value is 3.414 that is greater than 1
        System.out.println(Math.acos(a));
    }
}

输出:

NaN

例 5

public class AcosExample5
{
    public static void main(String[] args) 
    {
        double a = Math.PI;
        double b = Math.toRadians(a);
        System.out.println(Math.acos(b));
    }
}

输出:

1.5159376794536454






相关用法


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