Java Math min() 方法
定义和用法
min()
方法返回一对数字中具有最小值的数字。
提示:使用 max()
方法返回具有最高值的数字。
实例
从不同的数字对中获取最小值:
System.out.println(Math.min(2.0, 0.25)); System.out.println(Math.min(31.2f, 18.0f)); System.out.println(Math.min(14, 22)); System.out.println(Math.min(96L, 2048L));
语法
以下之一:
public static double min(double x, double y) public static float min(float x, float y) public static int min(int x, int y) public static long min(long x, long y)
参数
参数 | 描述 |
---|---|
x | 必需。数字。 |
y | 必需。数字。 |
技术细节
返回: | 表示两个数字中最小值的 double 、float 、int 或 long 值。 |
---|---|
Java 版本: | 任意版本。 |