Representing complex object dependencies
- by max
I have several classes with a reasonably complex (but acyclic) dependency graph. All the dependencies are of the form: class X instance contains an attribute of class Y. All such attributes are set during initialization and never changed again.
Each class' constructor has just a couple parameters, and each object knows the proper parameters to…