
Finding Balance In Your Object-Oriented Design Complexity
There are many areas of life where moderation is required. Object-oriented design complexity is one of those situations. We can create a solution that is highly granular and flexible or one that is monolithic and simple. However, as is often the case, the best solutions find some middle ground that keeps our application flexible and limits complexity. A Balanced Object-Oriented Design Every solution is unique and has its own constraints and requirements. Nevertheless, we have guidelines to avoid a solution that is either over-simplified or over-engineered. They may appear obvious but are often overlooked. Isolate unique functionality – we will not get much re-use from it. Look for repeated actions or manipulations. Focus on a unit of work. Do not... Read more