본문 바로가기

JAVA 프로그래밍

Inheritance(상속)

class Person{
 String name;
 int age;
 public Person(String n, int a){
  name = n;
  age = a;
 }
 public void show(){
  System.out.println("이름 : "+name+", 나이 : "+age);
 }
}
class Student extends Person{
 String school;
 public Student(String n, int a, String s){
  super(n,a);
  school = s;
 }
 public void show(){
  System.out.println("이름 : "+name+", 나이 : "+age+", 학교 : "+school);
 }
}
public class Inheritance {
 public static void main(String[] args) {
  Student sangsok = new Student("상속이",14,"상속대학교");
  sangsok.show();
 }
}

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

static 메소드  (0) 2009.10.07
CallingThis  (0) 2009.10.07
아스키코드를 이용하지 않고 바로 처리해주는 함수  (0) 2009.10.07
재귀함수  (0) 2009.10.07
This ??  (0) 2009.10.07