Java Math cos() 方法返回指定角度的三角余弦值。
用法:
Math.cos(double angle)
在这里,cos()
是一个静态方法。因此,我们使用类名 Math
访问该方法。
参数:
cos()
方法采用单个参数。
- angle- 要返回其三角余弦的角度
注意: 的价值angle
以弧度为单位。
返回:
- 返回三角余弦指定角度的
- 如果指定的角度是,则返回 NaNNaN 或无穷大
示例 1:Java 数学 cos()
import java.lang.Math;
class Main {
public static void main(String[] args) {
// create variable in Degree
double a = 30;
double b = 45;
// convert to radians
a = Math.toRadians(a);
b = Math.toRadians(b);
// print the cosine value
System.out.println(Math.cos(a)); // 0.8660254037844387
System.out.println(Math.cos(b)); // 0.7071067811865476
}
}
在上面的例子中,我们已经导入了java.lang.Math
包。如果我们想使用Math
类的方法,这一点很重要。注意表达式,
Math.cos(a)
在这里,我们直接使用了类名来调用方法。这是因为cos()
是一个静态方法。
注意: 我们用过Math toradians将所有值转换为弧度的方法。这是因为根据官方文档,cos()
方法将角度作为弧度。
示例 2:数学 cos() 返回 NaN
import java.lang.Math;
class Main {
public static void main(String[] args) {
// create variable
// square root of negative number
// results in not a number (NaN)
double a = Math.sqrt(-5);
// Using Double to implement infinity
double infinity = Double.POSITIVE_INFINITY;
// print the cosine value
System.out.println(Math.cos(a)); // NaN
System.out.println(Math.cos(infinity)); // NaN
}
}
在这里,我们创建了一个名为 a
的变量。
- Math.cos(a)- 返回 NaN,因为负数 (-5) 的平方根不是数字
Double.POSITIVE_INFINITY
是Double
类的一个字段。它用于在 Java 中实现无穷大。
注意: 我们用过Math sqrt计算一个数的平方根的方法。
相关用法
- Java Math cos()用法及代码示例
- Java Math cosh()用法及代码示例
- Java Math copySign()用法及代码示例
- Java Math ceil()用法及代码示例
- Java Math cbrt()用法及代码示例
- Java Math sqrt()用法及代码示例
- Java Math addExact(long x, long y)用法及代码示例
- Java Math sinh()用法及代码示例
- Java Math nextAfter()用法及代码示例
- Java Math multiplyFull()用法及代码示例
- Java Math incrementExact(int x)用法及代码示例
- Java Math tan()用法及代码示例
- Java Math nextUp()用法及代码示例
- Java Math addExact()用法及代码示例
- Java Math atan2()用法及代码示例
- Java Math max()用法及代码示例
- Java Math incrementExact()用法及代码示例
- Java Math floorMod()用法及代码示例
- Java Math acos()用法及代码示例
- Java Math exp()用法及代码示例
注:本文由纯净天空筛选整理自 Java Math cos()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。