I have a strong feeling that I do not know what pattern or particular language technique use in this situation.
So, the question itself is how to manage the growing parameter list in class hierarchy in language that has OOP support? I mean if for root class in the hierarchy you have, let's say 3 or 4 parameters, then in it's derived class you need to call base constructor and pass additional parameters for derived part of the object, and so forth... Parameter lists become enormous even if you have depth of inheritance more than two.
I`m pretty sure that many of SOwers faced this problem. And I am interested in ways how to solve it. Many thanks in advance.
| |||||
feedback
|
|
Constructors with long parameter lists is an indication that your class is trying to do too much. One approach to resolving that problem is to break it apart, and use a "coordinator" class to manage the pieces. Subclasses that have constructor parameter lists that differ significantly from their superclass is another example of a class doing too much. If a subclass truly is-a superclass, then it shouldn't require significantly more data to do its job. That said, there are occasional cases where a class needs to work on a large number of related objects. In this situation, I would create a new object to hold the related parameters. | |||
|
feedback
|
|
Alternatives:
| |||||||
feedback
|
|
Don't use constructors to initialize the whole object at once. Only have it initialize those things which (1) are absolutely required for the existence of the object and (2) which must be done immediately at its creation. This will dramatically reduce the number of parameters you have to pass (likely to zero). For a typical hierarchy like | |||
|
feedback
|
|
Seeing the code would help me suggest a solution.. However long parameter lists are a code-smell, so I'd take a careful look at the design which requires this. The suggested refactorings to counter this are However if you find that you absolutely need this and a long inheritance chain, consider using a hash / property bag like object as the sole parameter
| |||
|
feedback
|
|
Possibilities:
| ||||
|
feedback
|
|
Another tip: Keep your class hierarchy shallow and prefer composition to inheritence. That way your constructor parameter list will remain short. | |||
|
feedback
|