vote up 5 vote down star
1

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 thoughts on the subject, but I'd like to hear more advice.

I'm referring to both constructor overloading in a simple class and constructor overloading while inheriting an already overloaded class (meaning the base class has overloaded constructors).

Thanks :)

flag

0% accept rate

4 Answers

vote up 11 vote down

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.

link|flag
I think "already overloaded classes" meant that the base class has several overloaded constructors. – Chii Jul 25 at 14:20
Yes, this is what I meant. – errr Jul 25 at 14:52
I've modified my answer from this clarification – oxbow_lakes Jul 25 at 16:58
I agree about the first part, but not about the second part of inheriting an already overloaded class: Let's say i'm inheriting Exception to a new class where I want that the Exception's string will begin with 'bla' - meaning I should validate it in the constructors receiving the String. In case I don't call a primary constructor like in the base class, I have to replicate the code of this validation. – errr Jul 25 at 17:30
I think this is unnecessarily restrictive. – Tom Hawtin - tackline Jul 26 at 0:49
show 1 more comment
vote up 2 vote down

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.

link|flag
vote up 0 vote down

Constructor overloading is subject to the application.

what is the best practice for constructor overloading in Java?

There is no such guideline.

link|flag
vote up 0 vote down

It really depends on the kind of classes as not all classes are created equal.

As general guideline I would suggest 2 options:

  • For value & immutable classes (Exception, Integer, DTOs and such) use single primary constructor as suggested in above answer
  • For everything else (session beans, services, mutable objects, JPA & JAXB entities and so on) use default constructor only with sensible defaults on all the properties so it can be used without additional configuration
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.