Recent Posts

spring MVC란?

2 minute read

Spring MVC spring MVC란 Front Controller Pattern에 기초한 spring 프레임워크에서 제공하는 웹 모듈이다. MVC 패턴에 기초하여 웹 프로그래밍을 할 수 있게 해주는 프레임워크인 것이다. Model : 모델은 뷰가 렌더링하는데 필요한...

nested class의 종류 - 작성중

less than 1 minute read

nested class(중첩 클래스) 클래스 안에 다시 클래스를 정의할 수 있는데 이것을 nested class(중첩 클래스)라고 한다. nested class에는 아래와 같은 종류들이 있다. static inner 멤버 클래스 ㅇㄹㅇ nonstatic inner 멤버 클래...

자바에서 static 블록은 무엇을 의미할까?

1 minute read

아래의 코드와 같이 static { } 혹은 { } 블록을 종종 볼 수 있다. 이러한 블록들은 초기화 블럭(initialization block)이라고 하고 클래스 초기화 블럭, 인스턴스 초기화 블럭으로 나뉜다. ```java class BlockTest{ static ...