본문 바로가기

자바 기초

(5)
05. 배열 생성 및 초기화 배열 생성 // 선언과 동시에 빈 배열 생성 int[] intArray = new int[5]; // 크기 5의 빈 배열 // 선언 후, 배열 생성 int[] intArray; intArray = new int[5]; // 크기 5의 빈 배열 // 리터럴로 생성 int[] intArray = {1, 2, 3, 4, 5}; // 이 방식은 최초 변수 정의할 때만 가능 int[] intArray; intArray = {1, 2, 3, 4, 5}; // 오류 배열 접근 // 대입 intArray[0] = 1; intArray[1] = 2; intArray[2] = 3; intArray[3] = 4; intArray[4] = 5; // 접근 System.out.println(intArray[0] + intArr..
04. 조건/분기문 if / else if (조건부분 1) { // 수행 부분 1 } else if (조건 부분 2) { // 수행 부분 2 } else if (조건 부분 3) { // 수행 부분 3 } else { // 수행 부분 4 } switch int i = 10; if (i % 3 == 0) { // i < 20 : 불린 식, 변수, 메소드 System.out.println("C 구역입니다."); } else if (1 % 3 == 1) { System.out.println("A 구역입니다."); } else { System.out.println("B 구역입니다."); } switch (i % 3) { // i : 불린이 아닌 식, 변수, 메소드 case 0: System.out.println("C 구역입니다.")..
03. 형 변환 형변환 바꾸고자 하는 형(to)이 기존의 형(from)보다 넓은 데이터를 담을 수 있는 자료형일 경우 특별한 처리 없이 형을 변환 byte1 byte-128 ... 127short2 byte-32,768 ... 32,767int4 byte-2,147,483,648 ... 2,147,483,647long8 byte-9,223,372,036,854,775,808 ... 9,223,372,036,854,775,807float4 byte1.4023985 x 10^-45 ... 3.4028235 x 10^38double8 byte4.940656458412465 x 10^-324 ... 1.797693134862316 x 10^308 int a = 36; double b = a; // int to double sh..
02. 연산자 산술 연산자 + 덧셈 - 뺄셈 * 곱셈 / 나눗셈 % 나머지 논리 연산자 && AND || OR ! NOT ## 이스케이프 문자 \t 탭 \b 백스페이스 \n 줄 바꿈 (new line) \r 줄 바꿈 (carriage return) \f 폼 피드(form feed) ' 작은 따옴표 " 큰 따옴표 \ 역슬래쉬
01. 변수 타입 및 선언 기본 형식 type variableName; int intVariable; String stringVariable; char[] charArray; 변수 이름 규칙 대소문자 구분 숫자 시작 X _ , $ 사용 가능 → but $는 자동 생성되는 변수명, _는 상수에 쓰이므로 사용 권장 안함 Camel Case 변수 타입 byte 8bits -2^7 ~ 2^7-1 (-128 ~ 127) short 16bits -2^15 ~ 2^15-1 (-32768 ~ 32767) int 32bits -2^31 ~ 2^31-1 (-2147483648 ~ 2147483647) long 64bits -2^63 ~ 2^63-1 (-9223372036854775808 ~ 9223372036854775807) float 32bit..