Search Results

0
votes

Dealing with “global” data structures in an object-oriented world

I prefer using the singleton pattern as described in the GoF book for these situations. A singleton is not the same as either of the three options described in the question. The constructor is pri …
2
votes

How to model this in OO

From an OO perspective, HAS-A relationships solve this problem better than IS-A relationships in this case. A book HAS-A publisher (1:1) and a publisher HAS-A list of books that it publishes (1:ma …