CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Oct 2008
    Posts
    59

    Design patterns in c++

    Hi,

    I need a book on design patterns that covers all design patterns with some detailed examples.
    I already have elements of reusable code book with me.Thanks in advance

  2. #2
    Join Date
    May 2009
    Posts
    2,413

    Re: Design patterns in c++

    Quote Originally Posted by brett01 View Post
    Hi,

    I need a book on design patterns that covers all design patterns with some detailed examples.
    I already have elements of reusable code book with me.Thanks in advance
    Do you already have Design Patterns by Gamma and others?

    If you don't understand it then there's no other book to be had that explains it better. You need the human touch, someone that explains it to you. Enter a course. Try a local university or community college.

  3. #3
    Join Date
    Oct 2008
    Posts
    59

    Re: Design patterns in c++

    Quote Originally Posted by nuzzle View Post
    Do you already have Design Patterns by Gamma and others?

    If you don't understand it then there's no other book to be had that explains it better. You need the human touch, someone that explains it to you. Enter a course. Try a local university or community college.
    I dont say I didnt understand that book .I want a book thats more on examples so that I can complement this book.

  4. #4
    Join Date
    May 2009
    Posts
    2,413

    Re: Design patterns in c++

    Quote Originally Posted by brett01 View Post
    I dont say I didnt understand that book .I want a book thats more on examples so that I can complement this book.
    To my knowledge there isn't any C++ book expanding on the GoF book. But you may find something though by checking out the Wikipedia entry,

    http://en.wikipedia.org/wiki/Design_Patterns_(book)

  5. #5
    Join Date
    Nov 2006
    Location
    Essen, Germany
    Posts
    1,344

    Re: Design patterns in c++

    I own a copy of "Head First - Design patterns" and it´s amazing though it doesn´t cover all patterns mentioned by GoF. Each pattern is covered by a separate chapter, starting with a non-pattern design and migrating that design step-by-step to a design using a specific pattern. Easy to read, easy to understand, and good examples.

    Patterns covered in the book:
    - Observer
    - Decorator
    - Factory
    - Singleton
    - Command
    - Adapter
    - Facade
    - Template Method
    - Iterator
    - Composite
    - State
    - Proxy

    Patterns not covered in the book:
    - Bridge
    - Builder
    - Chain of Responsibility
    - Flyweight
    - Interpreter
    - Mediator
    - Memento
    - Prototype
    - Visitor
    Last edited by GNiewerth; August 17th, 2009 at 03:43 AM.
    - Guido

  6. #6
    Join Date
    Apr 2007
    Location
    Mars NASA Station
    Posts
    1,436

    Re: Design patterns in c++

    I strongly recommended Head First DP book.
    Thanks for your help.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured