An abstract class can be used as a type of template for other classes. The abstract class will hold common functionality for all classes that extend it.
For example:
Abstract Class Animal
All animals move and breathe and reproduce so these can be put into the Animal Class.
Now
Concrete Class Dog, Cat etc.
Have these base functions already provided.