max 方法及 min 方法皆屬於 java.lang.Math 物件裡的方法,使用方法可參考官方手冊。
max 方法有4種不同資料型別的呼叫方法:
- public static int max(int a,int b)
- public static long max(long a,long b)
- public static float max(float a,float b)
- public static double max(double a,double b)
min 方法有4種不同資料型別的呼叫方法:
- public static int min(int a,int b)
- public static long min(long a,long b)
- public static float min(float a,float b)
- public static double min(double a,double b)
範例:
- class ex_max_min {
- public static void main(String[] args) {
- System.out.println("最大值(90,78):" + Math.max(90,78));
- System.out.println("最小值(56,45):" + Math.min(56,45));
- }
- }