A design pattern is a general reusable solution to a commonly occurring problem in software design.
232
votes
9answers
33k views
Examples of GoF Design Patterns
I am learning GoF Java Design Patterns and I want to see some real life examples of them. Can you guys point to some good usage of these Design Patterns.(preferably in Java's core libraries).
Thank ...
211
votes
38answers
17k 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, ...
170
votes
15answers
18k 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 ...
161
votes
21answers
78k views
What does your Objective-C singleton look like?
My singleton accessor method is merely:
static MyClass *gInstance = NULL;
+ (MyClass *)instance
{
@synchronized(self)
{
if (gInstance == NULL)
gInstance = [[self alloc] ...
147
votes
21answers
22k views
What are the downsides to using Dependency Injection? [closed]
I'm trying to introduce DI as a pattern here at work and one of our lead developers would like to know: What - if any - are the downsides to using the Dependency Injection pattern?
Note I'm looking ...
133
votes
13answers
25k views
Difference between static class and singleton pattern?
What real (i.e. practical) difference exist between a static class and a singleton pattern?
Both can be invoked without instantiation, both provide only with one "instance" and neither of them is ...
109
votes
8answers
5k views
In a PHP project, what patterns exist to store, access and organize helper objects? [closed]
How do you organize and manage your helper objects like the database engine, user notification, error handling and so on in a PHP based, object oriented project?
Say I have a large PHP CMS.
The CMS ...
99
votes
22answers
3k views
Overengineering - How to avoid it
Sometimes I find myself designing my classes for a certain project. I start with some entities, some interfaces, but after some time I think:
Hey what about creating a handler for the classes using a ...
98
votes
18answers
37k views
Handling Dialogs in WPF with MVVM
In the MVVM pattern for WPF, handling dialogs is one of the more complex operations. As your view model does not know anything about the view, dialog communication can be interesting. I can expose ...
96
votes
11answers
7k views
Conceptually, how does replay work in a game?
I was kind of curious as to how replay might be implemented in a game.
Initially, I thought that there would be just a command list of every player/ai action that was taken in the game, and it then ...
96
votes
21answers
4k 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: ...
90
votes
48answers
26k views
88
votes
12answers
24k views
What is the difference between MVC and MVVM?
Is there a difference between the standard "Model View Controller" pattern and Microsoft's Model/View/ViewModel pattern?
86
votes
18answers
3k views
How to start recognizing design patterns as you are programming? [closed]
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 ...
81
votes
13answers
3k views
Pattern to avoid nested try catch blocks?
Consider a situation where I have three (or more) ways of performing a calculation, each of which can fail with an exception. In order to attempt each calculation until we find one that succeeds, I ...
74
votes
17answers
29k views
Efficient way to implement singleton pattern in Java
Efficient way to implement singleton pattern in Java?
70
votes
18answers
18k views
Why does C# not provide the C++ style 'friend' keyword?
The C++ friend keyword allows a class A to designate class B as its friend. This allows Class B to access the private/protected members of class A.
I've never read anything as to why this was left ...
70
votes
21answers
11k 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 ...
69
votes
8answers
36k views
Comet and jQuery
I've done some research into server push with javascript and have found the general consensus to be that what I'm looking for lies in the "Comet" design pattern. Are there any good implementations of ...
68
votes
8answers
2k views
Is there a better waiting pattern for c#?
I've found myself coding this type of thing a few times.
for (int i = 0; i < 10; i++)
{
if (Thing.WaitingFor())
{
break;
}
Thread.Sleep(sleep_time);
}
if(!Thing.WaitingFor())
{
...
65
votes
12answers
4k 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 avoiding the pattern entirely. There's an excellent discussion here. Please direct any ...
65
votes
19answers
14k views
On Design Patterns: When to use the Singleton?
The glorified global variable - becomes a gloried global class. Some say breaking Object Oriented Design.
Give me scenarios, other than the good old logger where it makes sense to use the singleton.
64
votes
25answers
7k views
Learning/Implementing Design Patterns (For Newbies) [closed]
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 ...
62
votes
11answers
21k views
Relational Database Design Patterns?
Design patterns are usually related to object oriented design.
Are there design patterns for creating and programming relational databases?
Many problems surely must have reusable solutions.
Examples ...
60
votes
17answers
7k 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. ...
60
votes
14answers
6k views
Why all the Active Record hate? [closed]
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 ...
57
votes
11answers
10k views
Dependency Injection vs Factory Pattern
Most of the examples quoted for usage of Dependency Injection, we can solve using the factory pattern as well. Looks like when it comes to usage/design the difference between dependency injection and ...
55
votes
4answers
7k views
What's an Aggregate Root?
I'm trying to get my head around how to properly use the repository pattern. The central concept of an Aggregate Root keeps coming up. When searching both the web and Stack Overflow for help with what ...
54
votes
12answers
2k views
Naming Classes - How to avoid calling everything a “<WhatEver>Manager”?
A long time ago I have read an article (I believe a blog entry) which put me on the "right" track on naming objects: Be very very scrupulous about naming things in your program.
For example if my ...
54
votes
28answers
12k views
Lua Patterns,Tips and Tricks [closed]
This is a Tips & Tricks question with the purpose of letting people accumulate their patterns, tips and tricks for Lua.
Lua is a great scripting language, however there is a lack of documented ...
52
votes
9answers
23k views
UI Design Pattern for Windows Forms (like MVVM for WPF)
MVVM is most commonly used with WPF because it is perfectly suited for it. But what about Windows Forms? Is there an established and commonly used approach / design pattern like this for Windows Forms ...
52
votes
11answers
15k views
When would you use the Builder Pattern? [closed]
What are some common, real world examples of using the Builder Pattern? What does it buy you? Why not just use a Factory Pattern?
52
votes
15answers
18k views
Is there a simple, elegant way to define Singletons in Python?
There seem to be many ways to define Singletons in python. I was wondering if there is a consensus opinion on StackOverflow.
50
votes
8answers
12k views
What is the basic difference between Factory and Abstract Factory Patterns?
What is the basic difference between Factory and Abstract Factory Patterns?
48
votes
11answers
9k views
What applications could I study to understand (Data)Model-View-ViewModel? [closed]
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 ...
47
votes
3answers
6k views
Design Patterns web based applications
I am designing a simple web based application. I am new to this web based domain.I needed your advice regarding the design patterns like how responsibility should be distributed among Servlets, ...
47
votes
4answers
9k views
Simplest/Cleanest way to implement singleton in JavaScript?
What is the simplest/cleanest way to implement singleton pattern in JavaScript?
47
votes
7answers
5k 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 ...
46
votes
8answers
3k views
What is the “Execute Around” idiom?
What is this "Execute Around" idiom (or similar) I've been hearing about? Why might I use it, and why might I not want to use it?
46
votes
24answers
6k views
Singletons: good design or a crutch?
Singletons are a hotly debated design pattern, so I am interested in what the Stack Overflow community thought about them.
Please provide reasons for your opinions, not just "Singletons are for lazy ...
45
votes
5answers
8k views
How do the Proxy, Decorator, Adaptor, and Bridge Patterns differ?
I was looking at the Proxy Pattern, and to me it seems an awful lot like the Decorator, Adaptor, and Bridge Patterns. Am I misunderstanding something? What's the difference? Why would I use the ...
44
votes
6answers
2k views
MVVM Madness: Commands
I like MVVM. I don't love it, but like it. Most of it makes sense. But, I keep reading articles that encourage you to write a lot of code so that you can write XAML and don't have to write any code in ...
44
votes
52answers
3k views
What design patterns do you use most often?
As a relative newcomer to the concept of design patterns, what are some of the most frequently used patterns?
This will help me focus my studies to patterns that may be relevant to the largest number ...
43
votes
22answers
17k views
When should you use the singleton pattern instead of a static class?
Name the design considerations in deciding between use of a singleton versus a static class. In doing this, you're kind of forced to contrast the two, so whatever contrasts you can come up with are ...
42
votes
6answers
17k views
Python's use of __new__ and __init__?
I'm just trying to streamline one of my classes and have introduced some functionality in the same style as the flyweight design pattern.
However, I'm a bit confused as to why __init__ is always ...
42
votes
12answers
6k 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 ...
42
votes
27answers
3k views
When are design patterns the problem instead of the solution?
I’ve never worked on software where I needed to use design patterns. According to Paul Graham’s Revenge of the Nerds essay, design patterns are a sign of not enough abstraction.
To quote him ...
42
votes
7answers
5k views
When should I use the Visitor Design Pattern?
I keep seeing references to the visitor pattern in blogs but I've got to admit, I just don't get it. I read the wikipedia article for the pattern and I understand its mechanics but I'm still confused ...
42
votes
16answers
4k views
Are there any viable alternatives to the GOF Singleton Pattern?
Let's face it. The Singleton Pattern is highly controversial topic with hordes programmers on both sides of the fence. There are those who feel like the Singleton is nothing more then a glorified ...
41
votes
2answers
2k views
Best way to code Achievements system
I'm thinking of the best way to design an achievements system for use on my site. The database structure can be found at MySQL: Best way to tell 3 or more consecutive records missing and this thread ...