Tagged Questions

13
votes
7answers
2k views

Open-closed principle and Java “final” modifier

The open-closed principle states that "Software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification". However, Joshua Bloch in his famous book ...
2
votes
1answer
78 views

Open closed prinicple, problem

I'm trying to apply OCP to a code snippet I have that in it's current state is really smelly, but I feel I'm not getting all the way to the end. Current code: public abstract class SomeObject {} ...