Skip to main content

Chapter 10 Interfaces

Abstract classes and methods are very useful. Centralizing shared behavior and requiring derived classes to implement dependent custom behavior enforces design constraints and ensures compatibility. What if we take this idea to an extreme and mark all methods as abstract? We would be left with an abstract base class having only abstract method signatures, no implementations, all of which must be implemented by derived classes. This idea turns out to be a very useful concept on its own, called an interface.
Unlike base classes which are extended by another class, interfaces are implemented by a class. Otherwise, an interface can be thought of an abstract base class with nothing but abstract method signatures. Implementing an interface is a kind of contract that must be fulfilled by the implementing derived class. To fulfill the contract, a class that implements an interface must provide concrete method implementations with signatures that match all those found in the interface. As with abstract methods, the Java compiler enforces the contract, raising compile-time errors if an interface’s signature is not implemented.