📅  最后修改于: 2023-12-03 14:50:43.888000             🧑  作者: Mango
Java 中的 Math 类包含了许多数学函数和常量,可以在各种数值计算中使用。该类是在 java.lang
包中定义的,因此您无需导入其他包就可以使用它。
以下是一些常见的 Math 类函数和常量:
Math.abs(x)
返回 x
的绝对值。Math.sin(x)
返回 x
的正弦值。Math.cos(x)
返回 x
的余弦值。Math.tan(x)
返回 x
的正切值。Math.max(x, y)
返回 x
和 y
中的较大值。Math.min(x, y)
返回 x
和 y
中的较小值。Math.PI
表示圆周率的常量。Math.E
表示自然对数的底数的常量。在您的代码中使用 Math 类的函数和常量时,可以直接使用它们的名称,无需前缀。
下面是一个使用 Math 类的例子:
public class MathExample {
public static void main(String[] args) {
int x = -10;
double y = 2.5;
System.out.println("abs(" + x + ") = " + Math.abs(x));
System.out.println("sin(" + y + ") = " + Math.sin(y));
System.out.println("max(" + x + ", " + y + ") = " + Math.max(x, y));
System.out.println("PI = " + Math.PI);
System.out.println("E = " + Math.E);
}
}
输出:
abs(-10) = 10
sin(2.5) = 0.5984721441039564
max(-10, 2.5) = 2.5
PI = 3.141592653589793
E = 2.718281828459045
总之,要使用 Java 中的 Math 类,请使用以下导入:
import java.lang.Math;
然后,您就可以在代码中使用各种 Math 类函数和常量了。