Constructor overloading in Java - best practice Constructor overloading in Java - best practice java java

Constructor overloading in Java - best practice


While there are no "official guidelines" I follow the principle of KISS and DRY. Make the overloaded constructors as simple as possible, and the simplest way is that they only call this(...). That way you only need to check and handle the parameters once and only once.

public class Simple {    public Simple() {        this(null);    }    public Simple(Resource r) {        this(r, null);    }    public Simple(Resource r1, Resource r2) {        // Guard statements, initialize resources or throw exceptions if        // the resources are wrong        if (r1 == null) {            r1 = new Resource();        }        if (r2 == null) {            r2 = new Resource();        }        // do whatever with resources    }}

From a unit testing standpoint, it'll become easy to test the class since you can put in the resources into it. If the class has many resources (or collaborators as some OO-geeks call it), consider one of these two things:

Make a parameter class

public class SimpleParams {    Resource r1;    Resource r2;    // Imagine there are setters and getters here but I'm too lazy     // to write it out. you can make it the parameter class     // "immutable" if you don't have setters and only set the     // resources through the SimpleParams constructor}

The constructor in Simple only either needs to split the SimpleParams parameter:

public Simple(SimpleParams params) {    this(params.getR1(), params.getR2());}

…or make SimpleParams an attribute:

public Simple(Resource r1, Resource r2) {    this(new SimpleParams(r1, r2));}public Simple(SimpleParams params) {    this.params = params;}

Make a factory class

Make a factory class that initializes the resources for you, which is favorable if initializing the resources is a bit difficult:

public interface ResourceFactory {    public Resource createR1();    public Resource createR2();}

The constructor is then done in the same manner as with the parameter class:

public Simple(ResourceFactory factory) {    this(factory.createR1(), factory.createR2());} 

Make a combination of both

Yeah... you can mix and match both ways depending on what is easier for you at the time. Parameter classes and simple factory classes are pretty much the same thing considering the Simple class that they're used the same way.


I think the best practice is to have single primary constructor to which the overloaded constructors refer to by calling this() with the relevant parameter defaults. The reason for this is that it makes it much clearer what is the constructed state of the object is - really you can think of the primary constructor as the only real constructor, the others just delegate to it

One example of this might be JTable - the primary constructor takes a TableModel (plus column and selection models) and the other constructors call this primary constructor.

For subclasses where the superclass already has overloaded constructors, I would tend to assume that it is reasonable to treat any of the parent class's constructors as primary and think it is perfectly legitimate not to have a single primary constructor. For example,when extending Exception, I often provide 3 constructors, one taking just a String message, one taking a Throwable cause and the other taking both. Each of these constructors calls super directly.


If you have a very complex class with a lot of options of which only some combinations are valid, consider using a Builder. Works very well both codewise but also logically.

The Builder is a nested class with methods only designed to set fields, and then the ComplexClass constructor only takes such a Builder as an argument.


Edit: The ComplexClass constructor can ensure that the state in the Builder is valid. This is very hard to do if you just use setters on ComplexClass.