static은 상속이 될까?
이 고민은 부모클래스에 static이 붙어있었을 때 왜 자식 클래스에서 이를 왜 Overriding 못 하는가?에 대한 궁금증에서부터 시작되었다. 인스턴스 메소드의 상속 사전지식으로 보아야할 Dynamic Method Dispatch 예를 보자. package Week6; public class Exam4{ public static void main(String[] args) { Parent parent1 = new Parent(); Parent parent2 = new Child(); Child child = new Child(); parent1.getTest(); parent2.getTest(); child.getTest(); } } class Parent { void getTest() { Syste..
JAVA/JAVA
2021. 3. 29. 02:02
최근에 올라온 글
- Total
- Today
- Yesterday