StrictMath类atan()方法atan()方法在java.lang包中可用。
atan()方法用于返回方法中给定参数的角度的反正切。在这里,atan代表一个角度的反正切。
atan()方法是静态方法,因此可以使用类名进行访问,如果尝试使用类对象访问该方法,则不会收到错误。
在此方法中,我们仅传递弧度类型的参数(即,首先,通过使用toRadians()Math类的方法将给定的参数转换为弧度,然后在方法中传递相同的变量atan())。
atan()方法不会引发任何异常。
在此方法中,反正切的含义是给定参数的反正切或反正切。
atan()谎言的范围– PI / 2至PI / 2。
语法:public static double atan(double d);
参数:double d –表示要找到其反正切值的double类型值。
返回值:
此方法的返回类型为double-返回给定角度的反正切。
注意:如果我们将NaN作为参数传递,则方法将返回相同的值(NaN)。
如果传递零,则方法将返回具有相同符号的相同值。
示例//Java程序演示的例子
//StrictMath类的atan(double d)方法。
public class Atan {
public static void main(String[] args) {
//变量声明
double d1 = -0.0;
double d2 = Math.PI / 2;
//显示d1和d2的先前值
System.out.println("d1: " + d1);
System.out.println("d2: " + d2);
//在这里,我们得到(-0.0),因为我们
//绝对值为-0.0的传递参数
System.out.println("StrictMath.atan(d1): " + StrictMath.atan(d1));
//通过使用toRadians()方法用于
//将绝对值转换为弧度
d2 = StrictMath.toRadians(d2);
//以弧度形式显示d2的值
System.out.println("StrictMath.toRadians(d2): " + d2);
//找到d2的反正切
//使用atan()方法
System.out.println("StrictMath.atan(d2): " + StrictMath.atan(d2));
}
}
输出结果d1: -0.0
d2: 1.5707963267948966
StrictMath.atan(d1): -0.0
StrictMath.toRadians(d2): 0.027415567780803774
StrictMath.atan(d2): 0.0274087022410345