Interface Segregation Principle
Version 1.0.0 · Updated 2026-07-30
CORE DEFINITION
Clients should not be forced to depend on methods they do not use. Instead of a large interface, create multiple specialized interfaces.
SCAFFOLDING EFFECT
Reduce cognitive load
On-demand allocation. Do not give users a remote control with 100 buttons if they only need power and volume. Overexposing information adds noise and risk.
Anchor fast decisions
It is one of the SOLID principles: fat interfaces force clients to depend on methods they do not need, increasing coupling, noise, and the scope of changes. Splitting into multiple fine-grained, single-responsibility specialized interfaces allows clients to depend only on the contracts they actually use, reducing coupling and change risk.
MINIMUM ACTION
In progress 0/1Practice this model in one real situation:
account_treeGenealogyexpand_more
menu_bookReferencesexpand_more
Source support: Explicit
- en.wikipedia.orghttps://en.wikipedia.org/wiki/Interface_segregation_principleverified
PRIVATE NOTES · Only visible to you
SAVED Q&A
ENTRY Q&A · Private saving available
Ask with a clear boundary
thinkingmodels answers from published entry context only.
Your question is sent to thinkingmodels. The answer uses public entry context only.
RELATED MODELS