In
Java, an
abstract class can implement an
interface, and not provide implementations of all of the
interface's methods. It is the responsibility of the first concrete
class that has that
abstract class as an ancestor to
implement all of the methods in the
interface.
read more >>