Java StrictMath max()方法

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

1 语法

public static long max(long a, long b)

2 参数

a :这是一个long整型值。

b : 这是另一个long整型值。

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) {
  
    long l1 = 4355335 , l2 = 8887765, l3 = -3255697;

    // both positive values
    double maxValue = StrictMath.max(l1, l2); 
    System.out.println("StrictMath.max(4355335, 8887765) : " + maxValue);
        
    // one positive and one negative value
    maxValue = StrictMath.max(l1, l3); 
    System.out.println("StrictMath.max(4355335, -3255697) : " + maxValue);    
  }
}

输出结果为:

StrictMath.max(4355335, 8887765) : 8887765.0
StrictMath.max(4355335, -3255697) : 4355335.0

 

热门文章

优秀文章