Multi-paradigm design with C++

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Florian Weimer

    Multi-paradigm design with C++

    I'd like to get up to speed with multi-paradigm design with C++. Can
    you recommend any books on this topic? I'd prefer something which is
    not tied to a particular compiler, treats ISO C++, and is not focused
    on GUI development and its specific problems.

    I've got a basic understanding of most C++ features (although I
    haven't used the language extensively since 1997 or so), but I don't
    really how everything fits together. I'm particularly interested in
    writing seamless extensions of the standard I/O and container library.
  • Victor Bazarov

    #2
    Re: Multi-paradigm design with C++

    "Florian Weimer" <fw@deneb.enyo. de> wrote...[color=blue]
    > I'd like to get up to speed with multi-paradigm design with C++. Can
    > you recommend any books on this topic? [...][/color]

    There is a book called "Multi-Paradigm Design for C++" by James
    Coplien. There is even a couple of reviews of that book on ACCU
    site (www.accu.org, book review section). That's probably what
    you want.

    Victor


    Comment

    • Florian Weimer

      #3
      Re: Multi-paradigm design with C++

      "Victor Bazarov" <v.Abazarov@att Abi.com> writes:
      [color=blue]
      > "Florian Weimer" <fw@deneb.enyo. de> wrote...[color=green]
      > > I'd like to get up to speed with multi-paradigm design with C++. Can
      > > you recommend any books on this topic? [...][/color]
      >
      > There is a book called "Multi-Paradigm Design for C++" by James
      > Coplien.[/color]

      It's certainly an interesting book, but I realized that I should have
      asked for something link "100 template programming tricks". 8->

      Comment

      • Victor Bazarov

        #4
        Re: Multi-paradigm design with C++

        "Florian Weimer" <fw@deneb.enyo. de> wrote...[color=blue]
        > "Victor Bazarov" <v.Abazarov@att Abi.com> writes:
        >[color=green]
        > > "Florian Weimer" <fw@deneb.enyo. de> wrote...[color=darkred]
        > > > I'd like to get up to speed with multi-paradigm design with C++. Can
        > > > you recommend any books on this topic? [...][/color]
        > >
        > > There is a book called "Multi-Paradigm Design for C++" by James
        > > Coplien.[/color]
        >
        > It's certainly an interesting book, but I realized that I should have
        > asked for something link "100 template programming tricks". 8->[/color]

        Well, you will probably enjoy "Modern C++ Design" by Alexandrescu
        and "C++ Templates" by Vandevoorde and Josuttis. I know I have.

        Victor


        Comment

        Working...