java.lang.StrictMath.max(double a, double b) 方法返回兩個double值中的那人更大的值。
如果該引數具有相同的值,其結果為相同的值。如果任一值為NaN,那麼結果為NaN。
這種方法認為負零嚴格小於正零。如果一個引數是正零和其他負0,那麼結果為正零。
以下是java.lang.StrictMath.max()方法的宣告
public static double max(double a, double b)
a -- 這是一個double值
b -- 這是另一個double值
此方法返回a和b中的最大值。
NA
下面的例子顯示java.lang.StrictMath.max()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 85 , d2 = 20, d3 = -10; // both positive values double maxValue = StrictMath.max(d1, d2); System.out.println("StrictMath.max(85, 20) : " + maxValue); // one positive and one negative value maxValue = StrictMath.max(d1, d3); System.out.println("StrictMath.max(85, -10) : " + maxValue); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
StrictMath.max(85, 20) : 85.0 StrictMath.max(85, -10) : 85.0