Anti-patterns ही सामान्य पण खराब उपायांची पुनरावृत्ती होणारी समस्यांची उपायांची यादी आहे — असे दृष्टिकोन जे वाजवी वाटतात पण वाईट परिणाम देतात (कठीण-देखभाल, बग-भरलेले किंवा कठोर कोड). त्यांना ओळखणे सामान्य चुकांपासून बचण्यास मदत करते.
Anti-patterns म्हणजे काय
ANTI-PATTERNS = commonly-used but COUNTERPRODUCTIVE solutions:
→ they seem like a solution but cause MORE problems (technical debt, bugs, rigidity)
→ the OPPOSITE of design patterns (proven good solutions)
→ recognizing them helps you AVOID common pitfalls
सामान्य कोड/डिজाइन anti-patterns
GOD OBJECT/CLASS → one class doing too much (huge, knows everything) → hard to maintain;
violates single responsibility
SPAGHETTI CODE → tangled, unstructured code with no clear flow → hard to follow/change
COPY-PASTE programming → duplicated code (violates DRY) → bugs/changes must be fixed everywhere
MAGIC NUMBERS/STRINGS → unexplained literal values → unclear, error-prone
PREMATURE OPTIMIZATION → optimizing before it's needed → wasted effort, complexity
GOLDEN HAMMER → over-using one familiar tool/pattern for everything ("when you have a hammer...")
HARDCODING → values that should be configurable baked into code
