Tagged Questions

10
votes
5answers
8k views

Constructor overloading in Java - best practice

There are a few topics similar to this, but I couldn't find one with a sufficient answer. I would like to know what is the best practice for constructor overloading in Java. I already have my own ...
5
votes
6answers
584 views

Overload “base” constructor or “this” constructor?

I have few types that derive from simplified Base as shown below. I am not sure whether to use base class's constructor or this constructor when overloading constructors. ConcreteA overloads ...