Abstract Classes and Methods
Abstract class:
It's only meant to be inherited from
You should not be creating instances from this
You get the base functionality from the main function (Animal)
You define the rest of the functionality in other classes like Monkey or Bird
Last updated