본문 바로가기

JAVA 프로그래밍

상속

class SuperFather {
 private String name;

 public SuperFather(String name) {
  this.name = name;     
  System.out.println(name+"SuperFather의 생성자 호출");
 }
}

public class SuperSon extends SuperFather {

 public SuperSon(String str) {
  super(str);
  System.out.println(str+"SuperSon의 생성자 호출");
 }
 public static void main(String[] args) {
  SuperSon s = new SuperSon("홍길동");
 }
}

'JAVA 프로그래밍' 카테고리의 다른 글

재귀함수  (0) 2009.10.07
This ??  (0) 2009.10.07
오버로딩,오버라이딩  (0) 2009.10.07
오버라이딩과 오버로딩  (0) 2009.10.07
생성자  (0) 2009.10.07