MAX_VALUE는 Java에서 정수의 가능한 최대값을 찾는 데 사용됩니다. 예를 들어 보겠습니다 -
예
public class Demo{ public static void main(String[] args){ System.out.println("The type is"); System.out.println(Integer.TYPE); System.out.println("The size is"); System.out.println(Integer.SIZE); System.out.println("The max value of integer is"); System.out.println(Integer.MAX_VALUE); } }
출력
The type is int The size is 32 The max value of integer is 2147483647
Demo라는 클래스는 Integer 클래스를 사용하여 Integer 클래스의 type, size, max_value 등의 다양한 특성을 제공합니다. 정수가 가질 수 있는 최대값은 MAX_VALUE 값으로 정수 클래스를 호출하여 계산할 수 있습니다. 콘솔에 표시됩니다.