Skip to main content\(\newcommand{\R}{\mathbb R}
\newcommand{\lt}{<}
\newcommand{\gt}{>}
\newcommand{\amp}{&}
\definecolor{fillinmathshade}{gray}{0.9}
\newcommand{\fillinmath}[1]{\mathchoice{\colorbox{fillinmathshade}{$\displaystyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\textstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptscriptstyle\phantom{\,#1\,}$}}}
\)
Section 10.4 Key Concepts
An interface is a kind of contract to be fulfilled by a class definition.
An interface is made up of one or more method signatures.
A class implements an interface when it adds the implements
keyword and an interface name to the start line of the class.
When a class implements an interface it is obligated to implement all methods signatures defined in that interface.
The compiler enforces the interface implementation contract. If the contract is not fulfilled completely, the compiler will fail with an error.
Interfaces may be defined using the angle brackets of generics, which allows methods signatures to be parameterized by type.
By implementing the java.lang.Comparable<T>
Interface, objects may be sorted by Arrays.sort(…)
or Collections.sort(…)
.
By implementing the java.util.Iterator<T>
and java.util.Iterable<T>
interfaces, objects may be iterated using the enhanced-for statement.
Polymorphism occurs when a single idea has many forms. There are multiple ways that Java supports polymorphism.
Polymorphic methods are implemented when multiple methods of the same name have distinct signatures
Polymorphic methods also occur when derived classes override base class methods
Polymorphic reference variables occur when a variable of type base class references a value of type derived class.
Polymorphic reference variables occur when a variable of type interface is capable of referencing any object that implements the interface.
Implementation inheritance in Java occurs when the extends keyword is used (is-a)
Interface inheritance in Java occurs when the implements keyword is used (another kind of is-a)