Tagged Questions

56
votes
33answers
5k views

What is so bad about Singletons

The Singleton pattern is a fully paid up member of the GoF Patterns Book but lately seems rather orphaned by the developer world. I still use quite a lot of singletons, especially for Factory classes, …
46
votes
13answers
5k views

Does Functional Programming Replace GoF Design Patterns?

Since I started learning F# and OCaml last year, I've read a huge number of articles which insist that design patterns (especially in Java) are workarounds for the missing features in imperative …
41
votes
20answers
2k views

How will I know when to create an interface?

I'm at a point in my development learning where I feel like I must learn more about interfaces. I frequently read about them but it just seems like I cannot grasp them. I've read examples like: …
34
votes
9answers
2k views

Design patterns to avoid

A lot of people seem to agree, that the Singleton pattern has a number of drawbacks and some even suggest to avoid the pattern all together. There's an excellent discussion here. Please direct any …
31
votes
7answers
2k views

Any patterns for modelling board games?

For fun, I'm trying to write one of my son's favorite board games as a piece of software. Eventually I expect to build a WPF UI on top of it, but right now I'm building the machine that models the …
30
votes
21answers
1k views

Are today’s young programmers getting wrapped around the axle with patterns and practices?

Recently I have noticed a number of questions on SO that look something like this: I am writing a small program to keep a list of the songs that I keep on my ipod. I'm thinking about writing …
30
votes
16answers
1k views

How to start recognizing design patterns as you are programming?

I have general academic knowledge of the various design patterns that are discussed in GoF and Head First Design Patterns, but I have a difficult time applying them to the code that I am writing. A …
30
votes
24answers
2k views

Learning/Implementing Design Patterns (For Newbies)

I'm a confused newbie and hobbyist programmer trying to get a grip on this, so forgive me if my question is a little off or doesn't make much sense. I see a lot of questions on SO revolving around …
30
votes
16answers
2k views

Why all the Active Record hate?

As I learn more and more about OOP, and start to implement various design patterns, I keep coming back to cases where people are hating on Active Record. Often, people say that it doesn't scale well …
28
votes
17answers
2k views

Design Pattern for Undo Engine

I'm writing a structural modeling tool for a civil enginering application. I have one huge model class representing the entire building, which include collections of nodes, line elements, loads, etc. …
25
votes
10answers
3k views

What applications could I study to understand (Data)Model-View-ViewModel?

I understand the basics of the Model-View-ViewModel pattern or as Dan Crevier calls it the DataModel-View-ViewModel pattern and I understand that it is a good approach to design WPF based …
25
votes
24answers
3k views

Singletons: good design or a crutch?

Singletons are a hotly debated design pattern, so I am interested in what the Stackoverflow community thought about them. Please provide reasons for your opinions, not just "Singletons are for lazy …
24
votes
13answers
551 views

Have you ever derived a programming solution from nature?

When you step back and look at ... the nature of animals, insects, plants and the problems they have organically solved perhaps even the nature and balance of the universe Have you ever been able …
24
votes
12answers
2k views

Large Switch statements: Bad OOP?

I've always been of the opinion that large switch statements are a symptom of bad OOP design. In the past, i've read articles that discuss this topic and they have provided altnerative OOP based …
24
votes
19answers
3k views

Singleton: How should it be used

Edit: From another question I provided an answer that has links to a lot of questions/answers about singeltons: More info about singletons here: So I have read the thread Singletons: good design …

1 2 3 4 5 122 next
15 30 50 per page