Java / Design Patterns
Explain telescopic constructor pattern in Java.
In Java there is no support for default values for constructor parameters.
Telescoping constructor comes to the rescue. A class has multiple constructors, where each constructor calls a more specific constructor in the hierarchy, which has more parameters than itself, providing a default value for the extra parameters. The next constructor does the same until there is no left.
public Person(String firstName, String lastName) { this(firstName, lastName, null); } public Person(String firstName, String lastName, String description) { this(firstName, lastName, description, 0); } public Person(String firstName, String lastName, String description, int age) { this.firstName = firstName; this.lastName = lastName; this.description = description; this.age = age; }
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
