Java StrictMath max()方法

java.lang.StrictMath.max(int a, int b) 方法返回两个int值的最大值。即,其结果是该参数更接近Integer.MAX_VALUE值。如果该两个参数相同,其结果与参数值相同。

1 语法

public static int max(int a, int b)

2 参数

a :这是int值。

b : 这是另外一个int值。

3 返回值

此方法返回a和b之间的最大值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath max()方法
 */
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

 

热门文章

优秀文章