共计 540 个字符,预计需要花费 2 分钟才能阅读完成。
要调用 Math 类中的方法,只需在代码中使用 Math 类的名称,并在方法名前加上类名 Math. 即可。不需要实例化 Math 类的对象,因为 Math 类中的方法都是静态的。以下是一个示例:
public class Main {public static void main(String[] args) {
double x = 2.5;
double y = -3.7;
double absX = Math.abs(x); // 调用 Math 类中的 abs() 方法,返回 x 的绝对值
double absY = Math.abs(y); // 调用 Math 类中的 abs() 方法,返回 y 的绝对值
double maxXY = Math.max(x, y); // 调用 Math 类中的 max() 方法,返回 x 和 y 中的最大值
double sqrtX = Math.sqrt(x); // 调用 Math 类中的 sqrt() 方法,返回 x 的平方根
System.out.println("绝对值:" + absX + "," + absY);
System.out.println("最大值:" + maxXY);
System.out.println("平方根:" + sqrtX);
}
}
输出结果:
绝对值:2.5, 3.7
最大值:2.5
平方根:1.5811388300841898
丸趣 TV 网 – 提供最优质的资源集合!
正文完