Tagged Questions
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 ...
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 ...
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 ...
0
votes
5answers
387 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);
...