Tagged Questions

2
votes
6answers
147 views

How do you fight growing parameter list in class hierarchy?

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 ...
0
votes
2answers
178 views

Construtor with long parameter list OR multiple setters?

To initialize an instance, we can use either a default constuctor and a number of setters, or a constructor with a long parameter list. In the latter way the object state may remain unchanged after ...