The Java Tutorials have been written for JDK 8. Examples and practices described in this page don't take advantage of improvements introduced in later releases and might use technology no longer available.
See Java Language Changes for a summary of updated language features in Java SE 9 and subsequent releases.
See JDK Release Notes for information about new features, enhancements, and removed or deprecated options for all JDK releases.
You saw an example of implementing an interface in the previous lesson. You can read more about interfaces herewhat they are for, why you might want to write one, and how to write one.
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.