Java StrictMath min()方法

java.lang.StrictMath.min(int a, int b) 方法返回两个int 的最小值。即,其结果是该参数更接近Integer.MIN_VALUE值。如果该参数具有相同的值,其结果是参数相同的值。

1 语法

public static int min(int a, int b)

2 参数

a : 这是一个int值。

b : 这是另外一个int值。

3 返回值

这个方法返回a和b之间的最小值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath min()方法
 */
import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    int i1 = 10 , i2 = 80, i3 = -95;

    // both positive values
    double minValue = StrictMath.min(i1, i2); 
    System.out.println("StrictMath.min(10, 80) : " + minValue);
        
    // one positive and one negative value
    minValue = StrictMath.min(i1, i3); 
    System.out.println("StrictMath.min(10, -95) : " + minValue);    
  }
}

输出结果为:

StrictMath.min(10, 80) : 10.0
StrictMath.min(10, -95) : -95.0

 

热门文章

优秀文章