wrapper 썸네일형 리스트형 WRAPPER 클래스 Integer WRAPPER 클래스 Integer public class IntegerTest { public static void main(String[] args) { System.out.println("100을 10진수 변환 = " + Integer.parseInt("100")); System.out.println("100을 8진수 변환= " + Integer.parseInt("100", 8)); // int 4byte(8*4=32) 정수; 부호; 1bit/값;31 // -2^31 ~ 2^31-1 // ???? ~ ???? System.out.println("int 최대값 =" + Integer.MAX_VALUE); System.out.println("int 최소값 =" + Integer.MIN_VALUE); S.. 더보기 이전 1 다음