java.lang.StrictMath.min(long a, long b)方法範例


java.lang.StrictMath.min(long a, long b) 方法返回兩個long值的較小值。即,其結果是更接近Long.MIN_VALUE值。如果該引數具有相同的值,其結果是與引數相同的值。

宣告

以下是java.lang.StrictMath.min()方法的宣告

public static long min(long a, long b)

引數

  • a -- 這是long的值。

  • b -- 這是另一個long整型值。

返回值

這個方法返回a和b之間的最小值。

異常

  • NA

例子

下面的例子顯示java.lang.StrictMath.min()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    long l1 = 1327865 , l2 = 6787544, l3 = -297417;

    // both positive values
    double minValue = StrictMath.min(l1, l2); 
    System.out.println("StrictMath.min(1327865, 6787544) : " + minValue);
        
    // one positive and one negative value
    minValue = StrictMath.min(l1, l3); 
    System.out.println("StrictMath.min(1327865, -297417) : " + minValue);    
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

StrictMath.min(1327865, 6787544) : 1327865.0
StrictMath.min(1327865, -297417) : -297417.0