java.lang.Math.max(double a, double b)方法實例
java.lang.Math.max(double a, double b) 返回兩個double值的最大值。即,其結果是該參數接近正無窮大。如果該參數具有相同的值,其結果是相同的值。如果任一值為NaN,那麼結果為NaN。與數值比較運算不同,該方法認為負零嚴格小於正零。如果一個參數是正零和其他負0,那麼結果為正零。
聲明
以下是java.lang.Math.max()方法的聲明
public static double max(double a, double b)
參數
-
a -- 參數
-
b -- 另一個參數
返回值
此方法返回a和b之間的較大值。
異常
-
NA
例子
下麵的例子顯示lang.Math.max()方法的使用。
package com.yiibai; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two double numbers double x = 60984.1; double y = 1000; // print the larger number between x and y System.out.println("Math.max(" + x + "," + y + ")=" + Math.max(x, y)); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Math.max(60984.1, 1000)=60984.1