Java StrictMath max()方法

java.lang.StrictMath.max(float a, float b) 方法返回两个float的较大值。

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

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

1 语法

public static float max(float a, float b)

2 参数

a : 这是float值。

b : 这是另一个float值。

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) {
  
    float f1 = 60 , f2 = 40, f3 = -5;

    // both positive values
    double maxValue = StrictMath.max(f1, f2); 
    System.out.println("StrictMath.max(60, 40) : " + maxValue);
        
    // one positive and one negative value
    maxValue = StrictMath.max(f1, f3); 
    System.out.println("StrictMath.max(60, -5) : " + maxValue);    
  }
}

输出结果为:

StrictMath.max(60, 40) : 60.0
StrictMath.max(60, -5) : 60.0

 

热门文章

优秀文章