java.lang.StrictMath.max(float a, float b)方法实例
java.lang.StrictMath.max(float a, float b) 方法返回两个float的较大值。
如果该参数的值相同,其结果为参数相同的值。如果任一值为NaN,那么结果为NaN。
这种方法认为负零严格小于正零。如果一个参数是正零和其他负0,那么结果为正零。
声明
以下是java.lang.StrictMath.max()方法的声明
public static float max(float a, float b)
参数
-
a -- 这是float值。
-
b -- 这是另一个float值。
返回值
此方法返回a和b之间的最大值。
异常
-
NA
例子
下面的例子显示java.lang.StrictMath.max()方法的使用。
package com.yiibai; 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