Coupling and cohesion
The efficiency of the programs you design depends on how well you choose the classes they use.Well-abstracted classes lead to programs that are easy to maintain and extend. However, if you choose bad abstractions, you could end up with an error-prone application that doesn't model the problem domain effectively.
Simplicity is the key to choosing good classes.The classes you choose should capture only one key abstraction. If a class performs two functions, then you should split it into two separate classes, each with its...