java.lang.StrictMath.max(long a, long b)方法實例
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