static void Main(string[] args) { //Super super = new Super(); Sub sub = new Sub(); }
static void Main(string[] args) { Super super = new Super(); Sub sub = new Sub(); // 자식 클래스가 객체를 만들면 부모의 변수나 메소드를 사용해야 하므로 부모가 먼저 만들어짐 }
static void Main(string[] args) { Sub sub = new Sub(); }