java.lang.StrictMath.min(long a, long b)方法实例
java.lang.StrictMath.min(long a, long b) 方法返回两个long值的较小值。即,其结果是更接近Long.MIN_VALUE值。如果该参数具有相同的值,其结果是与参数相同的值。
声明
以下是java.lang.StrictMath.min()方法的声明
public static long min(long a, long b)
参数
-
a -- 这是long的值。
-
b -- 这是另一个long整型值。
返回值
这个方法返回a和b之间的最小值。
异常
-
NA
例子
下面的例子显示java.lang.StrictMath.min()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { long l1 = 1327865 , l2 = 6787544, l3 = -297417; // both positive values double minValue = StrictMath.min(l1, l2); System.out.println("StrictMath.min(1327865, 6787544) : " + minValue); // one positive and one negative value minValue = StrictMath.min(l1, l3); System.out.println("StrictMath.min(1327865, -297417) : " + minValue); } }
让我们来编译和运行上面的程序,这将产生以下结果:
StrictMath.min(1327865, 6787544) : 1327865.0 StrictMath.min(1327865, -297417) : -297417.0