Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides, the authors of the book "Design Patterns: Elements of Reusable Object-Oriented Software" are often referred to as the Gang of Four, or GoF.

learn more… | top users | synonyms

-1
votes
0answers
32 views

p-value for multiple comparisions in R [closed]

The data set which I am trying to analyse is Student Test Data. I have a data of responses(either 1(correct response) or 0(incorrect response)) on some questions of a set of students, I have fitted a ...
0
votes
2answers
45 views

What's the right way to use the Factory method design pattern?

The diagram above taken from the factory method example, the cross at the right corner indicate it's not the right solution. So I came up with my own: Runner.java package test; public class ...
2
votes
3answers
78 views

Why do we need a “receiver” class in the Command design pattern

I am learning command design pattern. As far as I know, four terms always associated with the command pattern are command, receiver, invoker and client. A concrete command class has an execute() ...
4
votes
2answers
106 views

Is there a circular dependency between an collection and its iterator?

An iterator definitely has to know about the collection that it has to iterate. Do the collection also have to know about its iterator? Is the dependency one way or both ways? If the collection has ...
-5
votes
3answers
2k views

what is Gang of Four design pattern [duplicate]

I have recently come to know that there is a design pattern in Java called Gang of Four (GoF). I'm not able to understand what it is and what's its use. Can anybody make me clear on this? Thanks in ...
1
vote
1answer
70 views

How do I test GOF of a small sample against an arbitrary distribution in R

I’d like to do a GOF test on a small set of data (around 50 samples) against a defined distribution. Any suggestions would be appreciated. Example distribution: n <- 50 time.vec <- 1:n alpha ...
2
votes
3answers
65 views

What are benefits of using PrivateClass containing data of the Class?

class MyClassPrivate { //My members. }; //and then class MyClass { private: MyClassPrivate* const d; }; What is the reason of using this 'pattern'? How it's correctly called?
0
votes
2answers
151 views

Actionscript 3.0 and MVC

How do you implement MVC in actionscript 3.0? Do you build your own classic (based on GoF book) simple architecture or use some of modern frameworks? I learn on "classic solution" and couldn't ...
2
votes
1answer
125 views

Are there any patterns in GoF?

I'm currently learning for a Design Patterns exam (which will take place tomorrow...). In one of the "test exams" if found the following question: Jim Coplien said during the invited lecture that ...
0
votes
1answer
47 views

using this reference?

It possible to get uglier OO behavior than normal OO pattern? My cclass contain instance of receiver (to invoke command) but my receiver also contain list of command which been enacted on it, ...
14
votes
3answers
1k views

which GOF Design pattern(s) has entirely different implementation (java vs Scala)

Recently I read following SO question : Is there any use cases for employing the Visitor Pattern in Scala? Should I use Pattern Matching in Scala every time I would have used the Visitor ...
4
votes
1answer
424 views

Implementing Visitor Pattern while allowing different return types of functions

I am trying to implement the Visitor Pattern for an object structure which has methods with different return types (string, unsigned int, etc). Now, in the object hierarchy I have added an Accept ...
2
votes
2answers
154 views

Choosing a GoF Pattern

We currently undertaking a mass conversion of Access apps to .NET front-ends. A lot of the Access Apps have reports and the method of creating a RDLC (or Crystal rpt), and a host form with dataset ...
2
votes
4answers
2k views

How do Gang of Four Design Patterns fit into the MVC paradigm?

I've mulled over Design Patterns for some time now and I am just starting to see how I might actually begin incorporating some of these more deliberately in my development work. However, I am still ...
3
votes
1answer
43 views

should the builder reset its build environment after delivering the product

I am implementing a builder where in the deliverable is retrieved by calling Builder::getProduct() . The director asks various parts to build Builder::buildPartA() , Builder::buildPartB() etc. in ...
2
votes
2answers
442 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 ...
3
votes
1answer
477 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
307 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
1answer
177 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 ...
5
votes
2answers
222 views

Does the implementation of the java.util.Iterator use the 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
3
votes
3answers
857 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 ...
0
votes
2answers
134 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 ...
3
votes
3answers
304 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?
46
votes
2answers
19k 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 ...
9
votes
2answers
2k 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?
1
vote
1answer
63 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 ...
0
votes
4answers
233 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 { ...
4
votes
1answer
2k 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
23
votes
8answers
2k 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 ...
1
vote
8answers
447 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
2
votes
2answers
1k 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.
25
votes
9answers
3k 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
38
votes
3answers
6k 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 ...
5
votes
2answers
5k 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 ...
6
votes
3answers
2k views

Podcasts on GoF design patterns [closed]

Anyone know of a good podcast on design patterns?
4
votes
1answer
564 views

Why are they called the “gang of four”? [closed]

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
2answers
388 views

Patterns used in WPF

I have been getting more involved with WPF for about a year now. A lot of things are new and sometimes it is hard to get my head wrapped around it. At the same time I am rereading the GOF Design ...
4
votes
4answers
723 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?
2
votes
3answers
509 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 ...
2
votes
5answers
351 views

.Net patterns vs. GOF

Since the GOF book was put together well before .Net came into being, are there any specific patterns described in GOF that are not appropriate for .Net? And if so, for what reason? This is a ...
1
vote
1answer
735 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 ...
5
votes
6answers
1k 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. ...
122
votes
17answers
27k 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 ...
1
vote
2answers
684 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 ...
12
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 ...
15
votes
12answers
5k views

Does a definitive list of design patterns exist? [closed]

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 ...
10
votes
5answers
885 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. ...