20210803) 상속 - 상속 Inheritance
Animal(부모 클래스: 슈퍼클래스)
package inherritance;
public class Animal {
public void eat() {
System.out.println("맛있게 먹는다 쩝쩝");
}
}
Bird(자식 클래스: 서브클래스)
package inherritance;
// Bird 클래스는 Animal 클래스를 상속받음 extends
public class Bird extends Animal {
public void fly() {
System.out.println("하늘을 난다 피슈우웅~");
}
}
APP
package inherritance;
public class App {
public static void main(String[] args) {
// 새는 동물을 상속받음
Animal animal = new Animal();
animal.eat();
Bird bird = new Bird();
bird.eat(); // 상속받은 메소드
bird.fly(); // 클래스에 있는 메소드
}
}
Author And Source
이 문제에 관하여(20210803) 상속 - 상속 Inheritance), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@galduck/20210803-상속-상속-Inheritance저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)