java.lang.Math.max(float a, float b) 返回兩個float值較大值。即,其結果該引數接近正無窮大。如果該引數具有相同的值,其結果是相同的值。如果任一值為NaN,那麼結果為NaN。與數值比較運算不同,該方法認為負零嚴格小於正零。如果一個引數是正零和其他負0,那麼結果為正零。
以下是java.lang.Math.max()方法宣告
public static float max(float a, float 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 float numbers float x = 60984.1f; float y = 1000f; // print the larger number between x and y System.out.println("Math.max(" + x + "," + y + ")=" + Math.max(x, y)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Math.max(60984.1f, 1000f)=60984.1