java.lang.Integer.max() 方法返回两个 int 值中较大的一个,就像调用 Math.max 一样.
语法
public static int max(int a,
int b)
参数
a | 指定第一个操作数. |
b | 指定第二个操作数。 |
返回值
返回 a 和 b 中的较大者。
异常
无。
示例:
在下面的示例中,java.lang.Integer.max() 方法返回传递的两个 int 参数中较大的一个。
import java.lang.*;
public class MyClass {
public static void main(String[] args) {
//创建int值
int x = 5;
int y = 10;
//打印两个int值中的最大值
System.out.println("max(x, y) = " + Integer.max(x, y));
}
}
上述代码的输出将是:
max(x, y) = 10