Abstract Class
Discover the use of abstract classes to define inheritable characteristics, behaviors, and implementations for subclasses.
We'll cover the following...
Understanding abstract classes
Mammals are a group of animals, not a concrete species. The term defines a set of characteristics but might not exist in itself. To define a class that can only be used as a superclass of other classes but cannot produce an object, we use the abstract
keyword before its class definition. ...