2. 시작하기
자바 블록레벨 스코프
- 자바의 변수는 생성된 블록에서 블록이 종료되면 메모리에서 사라짐
package day01;
public class Variable {
static int n4 = 40;
public static void main(String[] args) {
System.out.println(n4);
int score = 78;
String userName = "홍길동";
int userName123;
int phoneNumber;
int i = 100;
for (int j= 0; j < 5; j++) {
System.out.println(j);
}
int n1 = 10;
if (true) {
System.out.println(n1);
int n2 = 20;
while(true) {
System.out.println(n2);
int n3 = 30;
break;
}
}
System.out.println(n1);
}
}
3. 데이터타입
- 값만 입력하고
Ctrl + Alt + v
하면 변수와 타입을 알아서 담아줌
- 자바의 데이터 타입은 8개
- byte, short, int, long, float, double, boolean, char