📅  最后修改于: 2023-12-03 15:31:31.536000             🧑  作者: Mango
在Java中,Math.max()是用来返回给定两个数中的最大值的静态方法。下面是Math.max()方法的语法:
public static int max(int x, int y)
public static long max(long x, long y)
public static float max(float x, float y)
public static double max(double x, double y)
以下是一个简单的Java代码实例,该实例演示如何使用Math.max()方法来获取两个数中的最大值:
public class MaxExample {
public static void main(String[] args) {
int a = 7;
int b = 9;
int c = Math.max(a, b);
System.out.println("Maximum number is " + c);
}
}
// Output: Maximum number is 9
以上代码使用Math.max()方法返回给定两个整数之间的最大值,并对其进行打印。这将输出:Maximum number is 9。
Java的Math.max()方法可以方便地找到给定两个数中的最大值。它支持多种数据类型,包括整数、long、浮点数和双精度。我们建议您熟练掌握该方法,以便在需要时使用它。