如何实现Java方法的复用?
发表时间: 2023-10-17 11:24
public class Java04 {
public static void main(String[] args) {
// 方法的复用:方法的重复使用、重复调用
// 返回2个数中的最大值
int a = 2;
int b = 3;
int x = 5;
int c = m(m(a, b), x);
System.out.println(c);
}
private static int m(int a, int b) {
return a > b ? a : b;
}
}