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