Connecting Tech Pros Worldwide Help | Site Map

Design Patterns Advice And Resources

  #1  
Old July 22nd, 2005, 07:06 AM
NKOBAYE027
Guest
 
Posts: n/a
Hi Folks: Can anyone direct me to a good resource on design patterns. I'd
like to use them for a project I'm working on regarding set theory - in
particular I'd like to use the Decorator pattern to present an interface for
a 'sortable' set template derived from the default unsorted set template.
And, I'd like to have a Factory pattern used as a source of the set objects.
I am a relative newbie to this sort of design approach, so if I'm thinking
wrong about things then I appreciate being set (NPI) back on the correct
path. I have seen some C# source for these things, but I want to do it in
C++ and I'd do better with source examples than trying to divine what should
be a pointer and what should be a reference and so on when setting up the
original template. Any direction (aside from misdirection) would be
appreciated.

regards,
L.


  #2  
Old July 22nd, 2005, 07:06 AM
Victor Bazarov
Guest
 
Posts: n/a

re: Design Patterns Advice And Resources


"NKOBAYE027" <NKOBAYE027@Rogers.Com> wrote...[color=blue]
> Hi Folks: Can anyone direct me to a good resource on design patterns.[...][/color]

How about comp.software.patterns?


  #3  
Old July 22nd, 2005, 07:06 AM
Mike Wahler
Guest
 
Posts: n/a

re: Design Patterns Advice And Resources


"NKOBAYE027" <NKOBAYE027@Rogers.Com> wrote in message
news:spSTb.115687$9Ce1.62314@news04.bloor.is.net.c able.rogers.com...[color=blue]
> Hi Folks: Can anyone direct me to a good resource on design patterns. I'd
> like to use them for a project I'm working on regarding set theory - in
> particular I'd like to use the Decorator pattern to present an interface[/color]
for[color=blue]
> a 'sortable' set template derived from the default unsorted set template.
> And, I'd like to have a Factory pattern used as a source of the set[/color]
objects.[color=blue]
> I am a relative newbie to this sort of design approach, so if I'm thinking
> wrong about things then I appreciate being set (NPI) back on the correct
> path. I have seen some C# source for these things, but I want to do it in
> C++ and I'd do better with source examples than trying to divine what[/color]
should[color=blue]
> be a pointer and what should be a reference and so on when setting up the
> original template. Any direction (aside from misdirection) would be
> appreciated.[/color]

http://hillside.net/patterns/

-Mike


  #4  
Old July 22nd, 2005, 07:06 AM
Phlip
Guest
 
Posts: n/a

re: Design Patterns Advice And Resources


> NKOBAYE027 wrote:
[color=blue][color=green]
> > Hi Folks: Can anyone direct me to a good resource on design patterns.[/color][/color]
I'd[color=blue][color=green]
> > like to use them for a project I'm working on regarding set theory - in
> > particular I'd like to use the Decorator pattern to present an interface[/color]
> for[color=green]
> > a 'sortable' set template derived from the default unsorted set[/color][/color]
template.[color=blue][color=green]
> > And, I'd like to have a Factory pattern used as a source of the set[/color]
> objects.[color=green]
> > I am a relative newbie to this sort of design approach, so if I'm[/color][/color]
thinking[color=blue][color=green]
> > wrong about things then I appreciate being set (NPI) back on the correct
> > path. I have seen some C# source for these things, but I want to do it[/color][/color]
in[color=blue][color=green]
> > C++ and I'd do better with source examples than trying to divine what[/color]
> should[color=green]
> > be a pointer and what should be a reference and so on when setting up[/color][/color]
the[color=blue][color=green]
> > original template. Any direction (aside from misdirection) would be
> > appreciated.[/color]
>
> http://hillside.net/patterns/[/color]

"Can patterns be harmful":
http://www.netobjectives.com/ezines/ezine_2004_01.pdf

discussions (vaguely) about that document:
http://groups.yahoo.com/group/extrem.../message/88654

--
Phlip
http://www.xpsd.org/cgi-bin/wiki?Tes...UserInterfaces


  #5  
Old July 22nd, 2005, 07:06 AM
Rolf Magnus
Guest
 
Posts: n/a

re: Design Patterns Advice And Resources


NKOBAYE027 wrote:
[color=blue]
> Hi Folks: Can anyone direct me to a good resource on design patterns.[/color]

"Design Patterns" by Gamma, Helm, Johnson, Vlissides, often called the
"GOF" (gang of four) book, because it was written by four authors.


  #6  
Old July 22nd, 2005, 07:06 AM
lilburne
Guest
 
Posts: n/a

re: Design Patterns Advice And Resources


Rolf Magnus wrote:
[color=blue]
> NKOBAYE027 wrote:
>
>[color=green]
>>Hi Folks: Can anyone direct me to a good resource on design patterns.[/color]
>
>
> "Design Patterns" by Gamma, Helm, Johnson, Vlissides, often called the
> "GOF" (gang of four) book, because it was written by four authors.
>
>[/color]

Another view on the subject:
http://www.laputan.org/foote/papers.html

  #7  
Old July 22nd, 2005, 07:06 AM
NKOBAYE027
Guest
 
Posts: n/a

re: Design Patterns Advice And Resources


Thanks a lot everyone - I'm certain to have enough for many masochistic
hours of fun. :o)

regards,
L.

"lilburne" <lilburne@godzilla.net> wrote in message
news:bvp4an$urf3k$1@ID-203936.news.uni-berlin.de...[color=blue]
> Rolf Magnus wrote:
>[color=green]
> > NKOBAYE027 wrote:
> >
> >[color=darkred]
> >>Hi Folks: Can anyone direct me to a good resource on design patterns.[/color]
> >
> >
> > "Design Patterns" by Gamma, Helm, Johnson, Vlissides, often called the
> > "GOF" (gang of four) book, because it was written by four authors.
> >
> >[/color]
>
> Another view on the subject:
> http://www.laputan.org/foote/papers.html
>[/color]


  #8  
Old July 22nd, 2005, 07:06 AM
Phlip
Guest
 
Posts: n/a

re: Design Patterns Advice And Resources


NKOBAYE027 wrote:
[color=blue]
> Thanks a lot everyone - I'm certain to have enough for many masochistic
> hours of fun. :o)[/color]

Okay. I get it. We'll stop. We won't even mention Enterprise Application
Patterns, or all the PLOP papers.

Besides, those are all Booooring.

--
Phlip
http://www.xpsd.org/cgi-bin/wiki?Tes...UserInterfaces


  #9  
Old July 22nd, 2005, 07:07 AM
Martijn Lievaart
Guest
 
Posts: n/a

re: Design Patterns Advice And Resources


On Tue, 03 Feb 2004 22:31:22 +0000, Phlip wrote:
[color=blue]
> NKOBAYE027 wrote:
>[color=green]
>> Thanks a lot everyone - I'm certain to have enough for many masochistic
>> hours of fun. :o)[/color]
>
> Okay. I get it. We'll stop. We won't even mention Enterprise Application
> Patterns, or all the PLOP papers.
>
> Besides, those are all Booooring.[/color]

But less boring is "Antipatterns" by Brown e.a. Probably not what the OP
is looking for, but a good read anyway.

HTH,
M4

Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Starting University COSC and learning JAVA, advice please :D David Van D answers 1 February 4th, 2006 02:45 AM
OOD/OOP and databases Thomas Jespersen answers 5 November 22nd, 2005 02:01 PM
i promise not to... NKOBAYE027 answers 14 July 22nd, 2005 07:49 AM
OOD/OOP and databases Thomas Jespersen answers 5 July 21st, 2005 05:56 PM