1
vote
4answers
85 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 d …
0
votes
4answers
111 views
Cancel pattern for background thread
I have code running in a background thread that need to periodically check if the user wants to abort the work.
The question is how to implement this in a mostly SOLID environment …
1
vote
1answer
38 views
Specification Pattern a good example for the Open Closed Principle?
Hi!
I just have a short question:
Is the Specifiaction Pattern (for example combined with the Repository Pattern) a good example for the Open Closed Principle?
Or do you can giv …
0
votes
2answers
82 views
Is there any static analysis tools that will report how closely the SOLID principles are followed?
The title says it all.
I know blindly following any "best practice" can still lead to a stinking pile of crap that strictly adheres to the best practice. The SOLID principles are …
5
votes
3answers
150 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 mode …
2
votes
2answers
94 views
What is a good way to show the relationship between loosely coupled classes and interfaces?
I have introduced the SOLID principles to my team and they understand and are excited about using the principles.
S - SRP - Single Responsibility Principle
O - OCP - Open/Closed …
0
votes
5answers
158 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 …
1
vote
3answers
105 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 us …
4
votes
8answers
318 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 rewor …
1
vote
2answers
78 views
SOLID Liskov Substitution Principle
if i have something like
class square : figure {}
class triangle : figure {}
does that mean that i should never ever use the square and triangle classes but only refer to figur …
3
votes
2answers
101 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 mul …
1
vote
1answer
58 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 RepositoryFactor …
1
vote
5answers
184 views
Starting point for learning CAD/CAE file formats?
We are developing some stress and strain analysis software at university. Now it's time to move from rectangles and boxes and spheres to some real models. But I still have little i …
2
votes
2answers
86 views
Is the set of SOLID principles missing an extra ‘D’?
Although not a pure OOD principle - should DRY also be included when thinking about SOLID principles? If not - why not?
1
vote
3answers
186 views
is this violating the SOLID principles ?
i have something like this in my project, the project it's kinda finished already (it's working)
i just want know if it is ok with the SOLID principles
static public class Tools
…
