Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- HttpMessageConverters
- 리소스 서버
- cors
- EnableAutoConfiguration
- 외부설정
- WebApplication Type
- HATEOAS
- 브루트포스
- 백기선
- 스프링 부트
- rest api
- webjar
- 백트래킹
- OAuth2
- 알고리즘
- 리소스핸들러
- AuthenticationPrincipal
- 스프링부트
- Application Argument
- @ConfigurationProperties
- JPA
- Spring Security
- application.properties
- 백준
- JsonSerializer
- 정적 리소스
- @Profile
- 다익스트라
- Application Event
- Application Runner
Archives
- Today
- Total
아카이브
static VS non-static 본문
static - 변수, 함수가 class에 종속
non static - 변수, 함수가 class가 아닌 object(instance)에 종속
1. static이 붙은 변수, 메소드를 instance 없이 사용가능한 이유
- instance의 모태가 되는 class가 메모리에 올라갈 때 class의 member로 메모리에 같이 올라가기 때문
2. static 메소드에서 instance 변수를 사용할 수 없는 이유
- static 사용 시점에 instance가 생성되어 있는지 알 수 없기 때문
3. static의 사용 이유
- instance를 생성하지 않고 사용할 수 있기 때문에 속도가 빠르다
- class 설계 시 멤버 변수 중에 모든 instance에서 공통으로 사용하는 부분을 static으로
- class 설계 시 메소드 중 instance 변수를 사용하지 않는 부분을 static으로
'프로그래밍' 카테고리의 다른 글
OOP의 4가지 특징 (0) | 2018.06.18 |
---|---|
Call by Value 와 Call by Reference (0) | 2018.06.18 |
Overriding 과 Overloading (0) | 2018.06.18 |
Garbage와 Garbage Collection (0) | 2018.06.18 |
Wrapper Class를 사용하는 이유 (0) | 2018.06.18 |