Mastering "I" in S.O.L.I.D
“A class should not be forced to implement interfaces it does not use.“
👀 Real Life Example
Let’s imagine we are designing an app for different types of workers:
❌ Bad Example (Violating ISP)
public interface Worker {
void work();
void eat()...
blog.techwithaditya.in2 min read