Skip to main content

Command Palette

Search for a command to run...

Code Smell 32 - Singletons

Published
1 min read
Code Smell 32 - Singletons
M

I’m a senior software engineer loving clean code, and declarative designs. S.O.L.I.D. and agile methodologies fan.

The most used and (in)famous design pattern in the world is causing us great harm.

Problems

  • Coupling

  • Testability.

  • Accidental implementation problems.

  • Multi threading issues.

  • Static methods polluting.

  • Object creation contract violation.

  • Bijection mismatch.

  • Memory issues.

  • Premature Optimization.

Solutions

  1. Avoid it.

  2. Use contextual unique objects.

  3. Benchmark object creation.

Examples

  • Database Access

  • Globals

  • Loggers

  • Helpers

Sample Code

Wrong

God is the archetypical singleton example.

Right

Detection

This is a design pattern. We should avoid it by policy.

We can add linter rules for patterns like 'getInstance()' so new developers cannot infect code with this anti-pattern.

Tags

  • Globals

Conclusion

This is an historical mistake already acknowledged by the community. Nevertheless, lazy developers bring it up again and again. We need to reach a consensus on its drawbacks.

Relations

More info

Credits

Photo by Maria Teneva on Unsplash


The Diagram is Not the Model. The model is not the diagram. It is an abstraction, a set of concepts and relationships between them.

Eric Evans


This article is part of the CodeSmell Series.

Code Smells

Part 1 of 50

In this series, we will see several symptoms and situations that make us doubt the quality of our developments. We will present possible solutions. Most are just clues. They are no hard rules.