I understand basics of abstraction but still I have some uncertainties.
- We cannot create obj of abstract class.
- Abstract methods are declared in abstract class but defined in child class.
- And we call abstract methods using obj of child class.
I don't get why we using abstract classes if we can do all the things through objects of the child class. We defined abstract methods in child class so it also means we declared it in child class too and we calling that method so it working like normal classes and child.
What is practical purpose of abstract classes?