SOLID అనేది ఐదు ఆబ్జెక్ట్-ఓరియంటెడ్ డిజైన్ సూత్రాలు, ఇవి నిర్వహణీయమైన, సరళమైన, అర్థమయ్యే కోడ్ను ప్రోత్సహిస్తాయి: Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, మరియు Dependency Inversion. అవి మంచి OO డిజైన్కు మార్గనిర్దేశం చేస్తాయి.
ఐదు సూత్రాలు
S — SINGLE RESPONSIBILITY → a class should have ONE reason to change (one responsibility/job)
→ don't make classes do too much (avoid God objects)
O — OPEN/CLOSED → open for EXTENSION, closed for MODIFICATION → add new behavior without
changing existing code (e.g. via polymorphism/strategies)
L — LISKOV SUBSTITUTION → subtypes must be substitutable for their base types (a subclass
shouldn't break behavior expected of the parent)
I — INTERFACE SEGREGATION → many specific interfaces > one fat interface → clients shouldn't
depend on methods they don't use
D — DEPENDENCY INVERSION → depend on ABSTRACTIONS, not concrete implementations → high-level
modules don't depend on low-level details (relates to DI)
