Tagged Questions

9
votes
7answers
691 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 h …
9
votes
10answers
573 views

The Open/Closed Principle

The Open/Closed Principle states that software entities (classes, modules, etc.) should be open for extension, but closed for modification. What does this mean, and why is it an im …
2
votes
6answers
234 views

Is the Open/Closed Principle a good idea? [closed]

This question is not about what OCP is. And I am not looking for simplistic answers, either. So, here is why I ask this. OCP was first described in the late 80s. It reflects the t …
1
vote
1answer
46 views

Does an API based on inheritance violate OCP? Can this be solved with a provider model/dependency injection?

I'm designing an API for the first time, and trying to follow SOLID guidelines. One of the things I find myself struggling with is balancing OCP and testability with simplicity and …
0
votes
5answers
161 views

How such an important principle “OCP” will be the reason of massive code duplication practice?

OCP (Open/Closed Principle) is one of the SOLID principles. Which is says: ”Software Entities should be Open for Extension, but Closed for Modification.” It take me while to und …
0
votes
1answer
34 views

How do you like the data access part (with SQL Server) of Agile Principles, Patterns, and Practices in C#

How do you think about data access code like this: public void AddCusotmer(Cusotmer customer) { //save customer into database ... // save payment type SavePaymentType …
0
votes
2answers
123 views

Making a class follow OCP - Factoring functions into objects

I have a class to which I'm constantly adding to. public class OrderRepository{ public void Add(IEnumerable<Order> orders){} public void Update(IEnumerable<Order …
-4
votes
7answers
116 views

If I have a full unit test suite for an application, must I still apply the Open/Closed Principle (OCP)?

The Wikipedia article on OCP says (emphasis mine): ... the open/closed principle states "software entities (classes, modules, functions, etc.) should be open for extension, but c …