Tagged Questions
The ocp tag has no wiki summary.
14
votes
9answers
1k 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 important principle of ...
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 ...
7
votes
2answers
392 views
DAO pattern and the Open-Closed Principle
I've seen and worked with a lot of older, JDBC-based DAO code that usually start out with CRUD methods. My question relates specifically to the retrieval methods, or 'finders'. Typically what I find ...
7
votes
6answers
580 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 thinking and context ...
5
votes
3answers
247 views
Good examples of OCP in open source libraries
There has been a lot of discussion on the subject of “Open Closed Principle” on stackoverflow. It seems however, that generally a more relaxed interpretation of the principle is prevalent, so for ...
5
votes
2answers
405 views
Understanding the Open Closed Principle
I was refactoring some old code of a simple script file parser when I came across the following code:
StringReader reader = new StringReader(scriptTextToProcess);
StringBuilder scope = new ...
4
votes
4answers
37 views
Exceptions and errors report order
What rules applies to the following code:
try {
assert (false) : "jane";
} catch (Exception e2) {
System.out.print("ae2 ");
} finally {
throw new ...
3
votes
2answers
93 views
How do Test-Driven Development and the Open/Closed Principle work together?
I've been reading up on unit testing, TDD, and the SOLID principles and I need some clarification. My understanding is that if one adheres to the open/closed principle, unit testing could become ...
2
votes
1answer
58 views
Understanding the relationship between Liskov and OCP
I am solidifying my understanding of the relationship between Liskov Substitutional Principal and Open Close Principal. If anybody could confirm my deductions and answer my questions below that would ...
2
votes
1answer
76 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
{}
...
1
vote
1answer
100 views
How do you write code that conforms to the OCP?
I have recently been trying to learn about basic design principles and the OCP has me a bit confused. It makes sense that when a change happens it is preferable to extend the system rather than modify ...
1
vote
1answer
84 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 ease of ...
0
votes
5answers
386 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 understand the above ...
0
votes
1answer
60 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(customer);
...
0
votes
2answers
183 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> orders){}
...
-2
votes
1answer
26 views
Oracle Certified Associate, Java SE 5/SE 6 Exam? [closed]
Could you please share your experience on passing java ocp 6 associate exam ? how much time we need to spend and what all books to look through ?
-2
votes
8answers
206 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 closed for ...