Liskov Substitution Principle
Liskov Substitution Principle enables you to replace objects of a parent class(Bird) with objects of a subclass(Eagle,Penguin) without breaking the application.
Liskov Substitution Principle extends the open/closed Principle.
public class Bird {
...
gurupalaniveltech.hashnode.dev2 min read