본문 바로가기
Java 배우기

Lesson: Interfaces and Inheritance 단원: 인터페이스와 상속

by 노화방지 Anti-aging Hairstyle 2016. 1. 5.
반응형


인터페이스   Interfaces

앞 단원에서 인터페이스를 구현하는 예를 보았습니다.
여기서 인터페이스에 대하여 더 많이 읽을 수 있습니다 - 인터페이스가 무엇을 위한 것인지, 왜 인터페이스를 작성하기를 원하는지, 인터페이스를 작성하는 방법.
You saw an example of implementing an interface in the previous lesson. You can read more about interfaces here—what they are for, why you might want to write one, and how to write one.


상속 Inheritance

이 섹션은 다른 클래스로부터 어떤 클래스를 추출할 수 있는 방식을 서술하고 있습니다.
즉,
subclasssuperclass로부터 필드와 메소드를 상속하는 방법.
모든 클래스들이
Object class로부터 추출됨을, 그리고 superclasses로부터 서브클래스가 상속받는 메소드들을 수정하는 방법을 배울 것입니다.
이 섹션은 또한 interface-like 
abstract classes를 커버합니다.
This section describes the way in which you can derive one class from another. That is, how a subclass can inherit fields and methods from a superclass. You will learn that all classes are derived from the Object class, and how to modify the methods that a subclass inherits from superclasses. This section also covers interface-like abstract classes.


반응형

댓글