Concept Flow - Partial abstraction
Define Abstract Class
Declare Abstract and Concrete Methods
Create Subclass
Implement Abstract Methods
Instantiate Subclass
Use Methods (Concrete + Implemented Abstract)
End
Partial abstraction means a class has some methods with no body (abstract) and some with body (concrete). Subclasses must implement the abstract methods.
