class Dino{
int weight;
int height;
}
class Tirano extends Dino{
Tirano(){
weight = 1;
height = 2;
}
void talk(){
System.out.println("나는 키 "+height+"m 몸무게 "+weight+"톤인 티라노사우르스다.");
}
}
class Triceratops extends Dino{
Triceratops(){
weight = 2;
height = 3;
}
void talk(){
System.out.println("나는 키 "+height+"m 몸무게 "+weight+"톤인 티리케라톱스다.");
}
}
class Bugung extends Dino{
Bugung(){
weight = 3;
height = 5;
}
void talk(){
System.out.println("나는 키 "+height+"m 몸무게 "+weight+"톤인 부경사우르스다.");
}
}
public class InheritanceBasicTest {
public static void main(String[] args) {
Tirano t = new Tirano();
Triceratops tc = new Triceratops();
Bugung b = new Bugung();
t.talk();
tc.talk();
b.talk();
}
}
결과 화면