공부기록, 2021-06-21(월), 070일차
## 자바
```
public class VariableScopeExam {
int globalScope = 10; // 인스턴스 변수
static int staticVal = 7; // 클래스 변수
public void scopeTest(int value) {
int localScope = 20; //지역변수
}
public static void main(String[] args) {
System.out.println(staticVal); // 클래스 변수는 인스턴스화 하지 않고도 사용가능
System.out.println(globalScope); // 오류
}
}
```
- static 메소드는 static한 필드(속성)만 사용할 수 있음.
## 자주 하는 실수
- spring 코드 정렬하기
## 큐
- 완벽한 공부법은 없다
## 내가 모르는 것
- JSP 14~26강
## 느낀점
- JSP 게시판과 PHP 게시판 만들기 비슷하면서도 다른 점이 재밌다.
## 일정
- 14:00 ~ 15:00 : 점심식사
- 15:00 ~ 16:30 : 휴식
- 16:30 ~ 17:30 : 공부, 영상업로드1
- 17:30 ~ 18:30 : 공부, 영상업로드2
- 18:30 ~ 19:30 : 공부, 영상업로드3
- 19:30 ~ 21:00 : 운동
- 21:00 ~ 22:00 : 휴식
- 22:00 ~ 23:00 : 블로그, 위키 정리