Java StrictMath max()方法

java.lang.StrictMath.max(double a, double b) 方法返回两个double值中的那人更大的值。

如果该参数具有相同的值,其结果为相同的值。如果任一值为NaN,那么结果为NaN。

这种方法认为负零严格小于正零。如果一个参数是正零和其他负0,那么结果为正零。

1 语法

public static double max(double a, double b)

2 参数

a :这是一个double值

b :这是另一个double值

3 返回值

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

4 示例 

package com.yiidian;

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

public class StrictMathDemo {

  public static void main(String[] args) {

    double d1 = 85 , d2 = 20, d3 = -10;

    // both positive values
    double maxValue = StrictMath.max(d1, d2); 
    System.out.println("StrictMath.max(85, 20) : " + maxValue);
        
    // one positive and one negative value
    maxValue = StrictMath.max(d1, d3); 
    System.out.println("StrictMath.max(85, -10) : " + maxValue);    
  }
}

输出结果为:

StrictMath.max(85, 20) : 85.0
StrictMath.max(85, -10) : 85.0

 

热门文章

优秀文章