java.lang.StrictMath.max(int a, int b)方法實例
java.lang.StrictMath.max(int a, int b) 方法返回兩個int值的最大值。即,其結果是該參數更接近Integer.MAX_VALUE值。如果該兩個參數相同,其結果與參數值相同。
聲明
以下是java.lang.StrictMath.max()方法的聲明
public static int max(int a, int b)
參數
-
a -- 這是int值。
-
b -- 這是另外一個int值。
返回值
此方法返回a和b之間的最大值。
異常
-
NA
例子
下麵的例子顯示java.lang.StrictMath.max()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { int i1 = 45 , i2 = 20, i3 = -15; // both positive values double maxValue = StrictMath.max(i1, i2); System.out.println("StrictMath.max(45, 20) : " + maxValue); // one positive and one negative value maxValue = StrictMath.max(i1, i3); System.out.println("StrictMath.max(45, -15) : " + maxValue); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
StrictMath.max(45, 20) : 45.0 StrictMath.max(45, -15) : 45.0