Java max()方法
描述:
该方法给出了两个参数中的最大值。该参数可以是 int, float, long, double.
语法
这种方法有以下变种:
double max(double arg1, double arg2) float max(float arg1, float arg2) int max(int arg1, int arg2) long max(long arg1, long arg2)
参数
下面是参数的详细信息:
-
基本数据类型
返回值
-
这个方法返回两个参数中最大的那一个。
例子:
public class Test{ public static void main(String args[]){ System.out.println(Math.max(12.123, 12.456)); System.out.println(Math.max(23.12, 23.0)); } }
这将产生以下结果:
12.456 23.12