Telescoping Constructor
Everything on SkillVeris tagged Telescoping Constructor — collected across the glossary, study notes, blog, and cheat sheets.
2 resources across 1 library
Interview Questions(2)
What is the Telescoping Constructor Anti-Pattern?
The telescoping constructor anti-pattern is a design flaw where a class exposes an ever-growing chain of overloaded constructors, each adding one more paramete…
Builder Pattern vs Telescoping Constructor
The builder pattern replaces a telescoping chain of overloaded constructors with a separate builder object that sets each field by name through chained method…