vote up 3 vote down star

One of the tenants of DDD is to not allow your objects to enter an invalid state. To me this means there shouldn't be a public parameterless constructor because that's going to be an object in an invalid state 99% of the time.

Is this a good way to move forward? It becomes a huge PITA when you just want to new-up a class real quick.

flag

4 Answers

vote up 1 vote down check

Good question. I have DDD nazi friends who say parameterless constructors are the devil. I agree with that to a certain extent, but I also feel it depends on the class's purpose.

link|flag
vote up 1 vote down

As Kilhoffer stated, it depends on what you are trying to do with the class. Under what circumstances would you want to new-up a class without actually initializing properties? If you have instance methods you wish to call, which don't require any data, you might consider either marking those methods as static or moving the methods to a separate class. It's also possible that your class has one additional valid state - totally empty.

Personally, I believe in everything in moderation. If the PITA factor is high and you are reasonably sure you aren't going to run into problems, then it seems parameterless constructors would be fine. At some point I think it becomes a matter of opinion.

link|flag
vote up 0 vote down

The question provides the answer. If you believe 1% of classes can have parameterless constructors and be initialized to a default initial state, those classes can have parameterless constructors and not break the guideline.

It isn't about banning parameterless constructors; it's about ensuring object instances are not in invalid states.

link|flag
vote up 0 vote down

It all depends on who calls the constructor. If only your factories do, then there isn't really a problem, because your factory methods become the "domain-side" constructors and the real constructors are an implementation detail.

link|flag

Your Answer

Get an OpenID
or

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