The solid-principles tag has no wiki summary.
24
votes
13answers
1k views
How do you define a Single Responsibility?
I know about "class having a single reason to change". Now, what is that exactly? Are there some smells/signs that could tell that class does not have a single responsibility? Or could the real answer ...
21
votes
8answers
2k views
Monkey-patching Vs. S.O.L.I.D. principles?
I'm slowly moving from PHP5 to Python on some personal projects, and I'm currently loving the experience. Before choosing to go down the Python route I looked at Ruby. What I did notice from the ruby ...
20
votes
6answers
543 views
SOLID vs. YAGNI
One of the most frequent agruments I hear for not adhering to the SOLID principles in the class design is YAGNI (allthough the arguer often doesn't call it that):
"It is OK that I put both feature X ...
16
votes
8answers
1k views
Are SOLID principles really solid?
The first pattern stands for this acronym is SRP. Here is a quote.
the single responsibility principle
states that every object should have a
single responsibility, and that
responsibility ...
16
votes
6answers
2k views
15
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
5answers
2k views
Configuring Automapper in Bootstrapper violates Open-Closed Principle?
I am configuring Automapper in the Bootstrapper and I call the Bootstrap() in the Application_Start(), and I've been told that this is wrong because I have to modify my Bootstrapper class each time I ...
13
votes
6answers
1k views
Single Responsibility Principle vs Anemic Domain Model anti-pattern
I'm in a project that takes the Single Responsibility Principle pretty seriously. We have a lot of small classes and things are quite simple. However, we have an anemic domain model - there is no ...
11
votes
5answers
354 views
How do you determine how coarse or fine-grained a 'responsibility' should be when using the single responsibility principle?
In the SRP, a 'responsibility' is usually described as 'a reason to change', so that each class (or object?) should have only one reason someone should have to go in there and change it.
But if you ...
10
votes
5answers
1k views
Liskov substitution principle - no overriding/virtual methods?
My understanding of the Liskov substitution principle is that some property of the base class that is true or some implemented behaviour of the base class, should be true for the derived class as ...
10
votes
4answers
631 views
How to implement SOLID principals into an existing project
I apologize for the subjectiveness of this question, but I am a little stuck and I would appreciate some guidance and advice from anyone who's had to deal with this issue before:
I have (what's ...
9
votes
5answers
275 views
Recommend a design pattern
An application I'm working on processes Work Items. Depending on the state of a work item there are a number of actions available. "Complete" "Cancel" "Reassign" etc...
To provide the functionality ...
9
votes
4answers
272 views
Real world Opensource c# applictions showing good code
I have been reading up on SOLID principles and was wondering if there is a good large opensource application or project in DOTNET that shows SOLID principles in use in a real world product.
If there ...
9
votes
5answers
690 views
Single Responsibility Principle(SRP) and class structure of my rpg looks “weird”
I'm making a role playing game just for fun and to learn more about the SOLID principles. One of the first things I'm focusing on is SRP. I have a "Character" class that represents a character in the ...
9
votes
5answers
1k views
Open source projects that demonstrate TDD and SOLID priciples
I asked a similar question before, and got some good answers, but I think it was too general.
http://stackoverflow.com/questions/559484/examples-of-great-software-design-and-implementation
Does ...
8
votes
4answers
121 views
Pattern for Creating a Simple and Efficient Value type
Motivation:
In reading Mark Seemann’s blog on Code Smell: Automatic Property he says near the end:
The bottom line is that automatic properties are rarely appropriate.
In fact, they are only ...
8
votes
6answers
261 views
Write programs that do one thing and do it well
I can grasp the part "do one thing" via encapsulation, Dependency Injection, Principle of Least Knowledge, and You Ain't Gonna Need It; but how do I understand the second part "do it well?"
An ...
8
votes
4answers
717 views
How to build the ViewModel in MVVM not to violate the Single Responsibility Principle?
Robert Martin says: "There should never be more than one reason for a class to change".
Let's consider the ViewModel class which is bound to a View. It is possible (or even probable) that the ...
7
votes
1answer
387 views
Using Ninject in a SOLID application architecture
I'm starting with MVC3 and want to use some flexible architecture, so I've read tens of blogs, a book (Pro ASP.NET MVC 3), read about SOLID principles and finally got to an application structure I ...
7
votes
1answer
166 views
Am I properly understanding DI/IoC?
I am currently attempting to learn the benefits of using an IoC container and familiarize myself with DI. I've started to use StructureMap since it seems rather simplistic and yet powerful.
I want ...
7
votes
8answers
2k views
Examples of great software design and implementation
I hope this isn't a duplicate...
What is the most solidly designed and implemented software system/framework/application that you've come across?
It seems like TDD, SOLID principles, OO design ...
6
votes
3answers
122 views
iOS Design Pattern equivalents when coming from a C#/Java world?
So I'm new to iOS development and am doing all I can to learn the "best" way to do things. (Yes I know that's a relative term)
I'm coming from a world of C# and Java where we do things like ...
6
votes
5answers
122 views
Dependency inversion. Object creation
According to SOLID principles a class cannot depend on other classes, dependencies have to be injected. It's simple:
class Foo
{
public Foo(IBar bar)
{
this.bar = bar;
}
...
6
votes
2answers
2k views
Can you explain Liskov Substitution Principle with a good C# example?
Can you explain Liskov Substitution Principle (The 'L' of SOLID) with a good C# example covering all aspects of the principle in a simplified way? -If it is really possible.
Thanks!
6
votes
4answers
291 views
Using the “Single Responsibility Principle” forces my containers to have public setters
I'm trying hard to design following the SOLID principles. What I've found is that when you use the "Single Responsibility Principle" (the S of SOLID) you usually have to split classes between the data ...
6
votes
9answers
1k views
Do you put Linq2SQL queries all over the place or in dedicated DAL classes?
I have always inserted my Linq2SQL queries all over the place, in almost every class all over the place.
I woud like to know what your strategy about where to put your Linq2SQL queries?
Do you put ...
5
votes
3answers
261 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
1answer
181 views
Dependency Inversion Principle in PHP
Since PHP is a loosely typed language, how can the DIP principle be applied in PHP?
A practical example would be greatly appreciated.
5
votes
1answer
414 views
How do I replace a switch statement with IOC so I can maintain SOLID principle
I wanted to avoid the switch statement. I have over 30 document types. There is also a possibility I will need to add more document types moving forward. I would rather pass IDocument and have the ...
5
votes
2answers
246 views
SOLID and the user interface?
I try to follow the SOLID principles. But every time it comes to user interfaces I find that there's an inherent friction between the clunky screenful of hybrid, aggregated data the customer requires ...
5
votes
8answers
737 views
How to separate data validation from my simple domain objects (POCOs)?
This question is language agnostic but I am a C# guy so I use the term POCO to mean an object that only preforms data storage, usually using getter and setter fields.
I just reworked my Domain Model ...
4
votes
3answers
232 views
Writing JavaScript according to SOLID
Have any one used the SOLID programming principle (or any of it's parts) while developing JavaScript?
I've just started up on reading on it but can't seem to find anyone that used it for JS. The only ...
4
votes
1answer
77 views
How granular do I get with my class design when trying to follow the SOLID principles?
I have an interface for Client Registration called IRegistrationService. This contains one method called Register and it is implemented through the class RegistrationService. If I wanted to have ...
4
votes
2answers
272 views
SOLID DDD ORM request (to use clean entities and repositories) for .NET
Is there a ORM that would
leave my entities classes clean, withouth any attributes for properties and classes
would not be ActiveRecord pattern so it should not have entity.Save/Delete etc.
...
4
votes
2answers
582 views
Is the Composite Pattern SOLID?
the leaf in the composite implements the Component that has the Add Remove and GetChild methods that he is never going to use (violation of the Interface segregation)
so is the usage of composite ...
4
votes
5answers
1k views
It this an example of the Single Responsibility Principle?
I made the following code example to learn how to use a generics method signature.
In order to get a Display() method for both Customer and Employee, I actually began replacing my IPerson interface ...
3
votes
2answers
98 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 ...
3
votes
2answers
75 views
What is the “Thin line” between thin and fat interfaces?
I have a reservation system that allows you to Book a reservation, Modify an existing reservation, and Cancel an existing Reservation. I was looking into the Interface Segregation Principle and I was ...
3
votes
1answer
88 views
DDD: What kinds of behavior should I put on a domain entity?
My team tries very hard to stick to Domain Driven Design as an architectural strategy. But, most of the time, our domain entities are pretty enimic. We'd like to be putting more business/domain ...
3
votes
3answers
199 views
Can good Object Orientated Design be formalised as good relational database design has been?
In the database world, we have normalisation. You can start with a design, crank the steps and end up with a normal form of the database. This is done on the basis of the symantics of the data and ...
3
votes
2answers
155 views
How can one measure the SOLIDness of C# code?
Which metrics are there and which tools exist to measure the SOLIDness of C# code? Or tools to indicate where the principles are violated most harmfully?
3
votes
3answers
150 views
Should logging reside within a class who's primary purpose is not logging?
This is more of a theoretical question. Should logging reside within a class who's primary purpose is not logging?
Here is a simple interface for anything that will preform a calculation on a ...
3
votes
1answer
396 views
DDD Repositories and Factories
i've read a blog about DDD from Matt Petters
and according and there it is said that we create a repository (interface) for each entity and after that we create a RepositoryFactory that is going to ...
3
votes
2answers
219 views
Interface Segregation in Qt
I always try to apply the S.O.L.I.D principles and I really like the Qt toolkit but I find myself stuggeling all the time with the single inheritance rule.
If you are using multiple inheritance,
...
3
votes
3answers
917 views
Confused about Single Responsibility Principle in the following example
In the following video, the author takes an existing class and assigns the Single Responsibility Principle to it. He takes a Print Class that has the job of Accessing Data, Formatting, and Printing ...
3
votes
5answers
485 views
How does this “Programming to Interfaces” thing work?
I like the idea of "programming to interfaces" and avoiding the use of the "new" keyword.
However, what do I do when I have two classes that have the same interface but are fundamentally different to ...
3
votes
2answers
5k views
Patterns to implement SOLID principles
I'm doing a presentation of Solid design principles and I'm trying to connect the single responsibility principle and the open and closed principle to design patterns.
Currently I have,
SRP- proxy, ...
2
votes
2answers
55 views
Interface Segregation Principle- Program to an interface
I was reading about SOLID and other design principles. I thought ISP was the same as "Program to an interface, not an implementation". But it looks like these are different principles?
Is there a ...
2
votes
1answer
84 views
Is Interface segregation principle only a substitue for Single responsibility principle?
Is interface segregation principle only a substitue for single responsibility principle ?
I think that if my class fulfill SRP there is no need to extract more than one interface.
So ISP looks like ...
2
votes
2answers
70 views
Do you know any specific case that a 'duplicated code' makes sense? [closed]
Do you know any specific case(s) where code duplication makes more sense and does not harm at all?