Tagged Questions

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 ...
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 ...
24
votes
3answers
2k views

Please help me understand the “Decorator Pattern” with a real world example.

I was studying the Decorator Pattern as documented in GOF. It seems like a complicated design pattern to me. So please, help me understand the Decorator Pattern. Could someone give a use-case example ...
18
votes
10answers
1k views

What is the difference between the Facade and Adapter Pattern?

I've been reading both definitions and they seem quite the same. Could anyone point out what are their differences? Thanks
16
votes
8answers
709 views

When should the Singleton pattern NOT be used? (Besides the obvious)

I know well that you want to use Singleton to provide a global point of access to some state or service. The benefits of the Singleton pattern do not need to be enumerated in this question. What I am ...
11
votes
7answers
381 views

How to learn design patterns and use them in practice [closed]

Already tried: dofactory Sourcemaking+their video "GOF" book "Head First Design Patterns" book But still have problems with implementation scenarios on practice. Maybe i have too little ...
11
votes
12answers
3k views

Does a definitive list of design patterns exist?

Where did the idea of design patterns come from, who decided what is and isn't a pattern and gave them their names? Is there an official organisation that defines them, or do they exist through some ...
9
votes
5answers
704 views

Which design patterns are underutilized?

Is there a specfic Gang Of Four Design Pattern that you frequently use, yet hardly see used in other peoples designs? If possible, please describe a simple example where this pattern can be useful. ...
8
votes
7answers
1k views

When to call the gang of four? [When to use design patterns?]

In The Guerilla Guide to Interviewing Joel says that guys who want to get things done, but are not smart will do stupid things like using a visitor design pattern where a simple array would be ...
6
votes
2answers
135 views

Is implementaion of java.util.Iterator is State pattern?

I am just looking for a reasonable answear how implementation of java.util.Iterator is coming under State Design Pattern EDIT Please Refer the below Link Examples of GoF Design Patterns
4
votes
2answers
221 views

How does double dispatch work in Visitor pattern?

I was looking into other questions related to the visitor pattern but couldn't understand the implementation of double dispatch in visitor pattern. Please refer to the link Visitor Pattern How does ...
4
votes
2answers
919 views

Differences between Abstract Factory Pattern and Factory Method

I know there are many posts out there about the differences between these two patterns, but there are a few things that I cannot find. From what I have been reading, I see that the factory method ...
4
votes
2answers
2k views

Design Patterns in Rails

I remember, I have a GoF book back in college about design patterns which helped me a lot with my C and C++ programming, since my jump ship to Rails I was trying to use those design patterns I learned ...
3
votes
1answer
107 views

Command object pattern wannabe or the real thing?

The command object pattern is one that I still haven't been able to truly grasp and I found an implementation in the code I'm currently working on so I studied it long and hard to see if I could ...
3
votes
2answers
148 views

GoF's implementation of the Prototype pattern

(This question is more for the people who have access to the book, It's hard to put it into context otherwise) I've been reading through the GoF's 'Design Patterns' book and there's a sentence that ...
3
votes
3answers
160 views

Is Abstract Factory just a set of Factory Methods?

Is Abstract Factory just a set of Factory Methods? Or is there any other difference between these patterns?
3
votes
1answer
347 views

What's the revised builder pattern?

What is the difference between the original Builder pattern by GoF and the "revised GoF Builder pattern" by Joshua Bloch?
3
votes
3answers
1k views

Podcasts on GoF design patterns [closed]

Anyone know of a good podcast on design patterns?
3
votes
1answer
317 views

Why are they called the “gang of four”?

The writers of the Dragon book are called gof. Why is that? Are they some kind of clique that always hangs out together?
3
votes
4answers
322 views

How many non-GOF patterns can you name?

How many design-patterns can you name that are not GOF patterns? Do you have any web-link that lists those names?
3
votes
6answers
491 views

Treating Classes as First Class Objects

I was reading the GoF book and in the beginning of the prototype section I ready this: This benefit applies primarily to languages like C++ that don't treat classes as first class objects. ...
2
votes
2answers
679 views

What is the Difference between GOF and GRASP design patterns

I am really confused about the difference between GOF and GRASP patterns? even both contribute to improved Object oriented practices
2
votes
2answers
385 views

C# GOF Pattern Examples

Are there any C# GOF design pattern examples? I Keep finding this site which does have examples, but the "C# Optimised" examples are only available when you purchase one of their products.
2
votes
3answers
274 views

Gang-of-four pattern usage in aspect-oriented-programming?

I am doing research on a SOA topic and i am trying to understand what gang of four say about aspect orientation. I also need to implement one of these pattern in AOP paradigm. What would be best ...
1
vote
2answers
106 views

Connection between GoF Design Patterns and SOLID

I am interested to know which GoF design pattern translates directly to a specific SOLID principle? Like for instance I think (in my opinion) the strategy pattern translates to the ...
1
vote
1answer
44 views

What is the most cohesive location to utilize a logger?

I've written a task manager program using Java, and made a single UI implementation for the moment in swing. The program has 3 layers at the moment. A presentation layer that interacts with the domain ...
1
vote
8answers
254 views

Understanding some of the design patterns(GOF) is difficult.How do I understand them?

some of the GOF patterns like Singleton or prototype are pretty simple. But some of them like factory method is clearly complicated. What is your advise for understanding them quickly? Thank you
1
vote
1answer
457 views

Command Pattern: Client and Invoker

In the command pattern: Why shouldn't the client participant be the same class as the invoker participant? Is there possible scenarios when the client participant and the invoker participant can be ...
1
vote
2answers
556 views

Classic Singleton implementation in OCaml

I am attempting to conceptualize the Singleton design pattern (qua Java) in OCaml and have seen ever instance allude to functors or modules, neither of which I am using in a proof of concept of GoF's ...
0
votes
2answers
57 views

Would this still be considered a Chain-of-Responsiblity pattern?

I have been using a design pattern for quite some time and have been calling/referring to it as a "Chain-of-Responsibility pattern" but now I realise there are differences, and it may not be ...
0
votes
3answers
148 views

Is this design pattern logical?

The following C# is abstract so you can see the structure of what I am trying to accomplish This is the Composite (GoF) Pattern I am using to represent a FileSystem tree interface IComponent { ...
-3
votes
1answer
73 views

Deprecated Design patterns [closed]

Does someone know what design Patterns of GoF has been deprecated, I mean what patterns of those 23 GoF design patterns are no longer discussed as OO patterns, maybe for similarity with other ...