java.lang.StrictMath.max(long a, long b) 方法返回兩個long值中的最大值。即,其結果是更接近Long.MAX_VALUE的值。如果該引數的值相同,其結果與引數的值相同。
以下是java.lang.StrictMath.max()方法的宣告
public static long max(long a, long b)
a -- 這是一個long整型值。
b -- 這是另一個long整型值。
此方法返回a和b之間的最大值。
NA
下面的例子顯示java.lang.StrictMath.max()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { long l1 = 4355335 , l2 = 8887765, l3 = -3255697; // both positive values double maxValue = StrictMath.max(l1, l2); System.out.println("StrictMath.max(4355335, 8887765) : " + maxValue); // one positive and one negative value maxValue = StrictMath.max(l1, l3); System.out.println("StrictMath.max(4355335, -3255697) : " + maxValue); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
StrictMath.max(4355335, 8887765) : 8887765.0 StrictMath.max(4355335, -3255697) : 4355335.0