Java StrictMath min()方法
java.lang.StrictMath.min(long a, long b) 方法返回两个long值的较小值。即,其结果是更接近Long.MIN_VALUE值。如果该参数具有相同的值,其结果是与参数相同的值。
1 语法
public static long min(long a, long b)
2 参数
a : 这是long的值。
b :这是另一个long整型值。
3 返回值
这个方法返回a和b之间的最小值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java StrictMath min()方法
*/
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
热门文章
优秀文章