Java에서 자유 블록 실행 순서
부류
father.java
public class father {
static{//
System.out.println("father'sSTATIC free block running");
}
{//
System.out.println("father'sfree block running");
}
public father(){
System.out.println("father'sconstructor running");
}
}
하위 클래스
son.java
public class son extends father{
static{//
System.out.println("son'sSTATIC free block running");
}
{//
System.out.println("son's freeblock running");
}
public son() {
// TODO Auto-generated constructor stub
System.out.println("son'sconstructor running");
}
}
주 함수가 있는 클래스
test.java
public class test{
public static void main(String[] args) {
Class f;
try {
System.out.println("--------beforeload father--------");
f=Class.forName("freeblock.father");
System.out.println("--------afterload father---------");
System.out.println("--------beforeinitial father object--------");
f.newInstance();
System.out.println("--------afterinitial father object--------");
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
Class s;
try {
System.out.println("-------beforeload son--------");
s=Class.forName("freeblock.son");
System.out.println("--------afterload son-------");
System.out.println("--------beforeinitial son object----------");
s.newInstance();
System.out.println("--------afterinitial son object-----------");
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
}
실행 결과:--------before loadfather--------
father's STATIC free blockrunning
--------after loadfather---------
--------before initial fatherobject--------
father's free block running
father's constructor running
--------after initial fatherobject--------
-------before load son--------
son's STATIC free block running
--------after load son-------
--------before initial sonobject----------
father's free block running
father's constructor running
son's free block running
son's constructor running
--------after initial son object-----------
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.