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 ...
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
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 ...
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?
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
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 ...