logo

자바 Math.max() 메서드

    Java.lang.math.max()주어진 두 인수에서 최대값 또는 가장 큰 값을 반환하는 데 사용되는 Java의 내장 메서드입니다. 인수는 int, float, double 및 long으로 사용됩니다.

통사론:

 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