此方法返回兩個引數的最大值。 引數型別可以是: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