JAva MATH.max
时间: 2023-10-24 15:05:36 浏览: 162
Java中的Math.max()方法是一个静态方法,用于返回两个参数中的最大值。它可以接受两个参数,也可以接受一个数组作为参数。如果传递的参数是整数、浮点数或长整数,则返回最大值。如果传递的参数是字符,则返回字符的ASCII码中的最大值。如果传递的参数是字符串,则返回字符串中的最大值(按字典顺序比较)。
以下是Math.max()方法的语法:
```
public static int max(int a, int b)
public static long max(long a, long b)
public static float max(float a, float b)
public static double max(double a, double b)
public static int max(int a, int b, int c)
public static long max(long a, long b, long c)
public static float max(float a, float b, float c)
public static double max(double a, double b, double c)
public static int max(int[] array)
public static long max(long[] array)
public static float max(float[] array)
public static double max(double[] array)
```
其中,前四个方法用于比较两个数的大小,后四个方法用于比较三个数的大小,最后四个方法用于比较数组中元素的大小。
阅读全文