An
abstract method is a
method that is
declared, but contains no implementation.
Abstract classes may not be instantiated, and require subclasses to provide implementations for the
abstract methods. The
abstract methods merely define a contract that derived classes
must implement.
read more >>