통사론:
public static int max(int a, int b) public static double max(double a, double b) public static long max(long a, long b) public static float max(float a, float b)
매개변수:
a: first value b: second value
반품:
This method returns maximum of two numbers.
- 양수 값과 음수 값을 인수로 제공하면 이 메서드는 양수 인수를 반환합니다.
- 두 음수 값을 모두 인수로 제공하면 크기가 더 작은 숫자가 결과로 반환됩니다.
- 인수가 숫자(NaN)가 아닌 경우 이 메서드는 NaN을 반환합니다.
예시 1:
public class MaxExample1 { public static void main(String args[]) { int x = 20; int y = 50; //print the maximum of two numbers System.out.println(Math.max(x, y)); } }지금 테스트해보세요
산출:
50
예 2:
public class MaxExample2 { public static void main(String args[]) { double x = 25.67; double y = -38.67; //print the maximum of two numbers System.out.println(Math.max(x, y)); } }지금 테스트해보세요
산출:
25.67
예시 3:
public class MaxExample3 { public static void main(String args[]) { float x = -25.74f; float y = -20.38f; //print the maximum of two numbers System.out.println(Math.max(x, y)); } }지금 테스트해보세요
산출:
-20.38