need to catch up

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

    need to catch up

    Hi all,

    I learned my C++ several years ago (I still use VC++ 4.0). This was
    pre-standardization and standard template library.

    1.) What _topics_ do I need to study in order to update my knowledge to
    current levels?

    2.) What books can some recommend that would cover this from my point of
    view (already know C++, just trying to catch up)?
    --

    Best wishes,
    Allen




  • Ivan Vecerina

    #2
    Re: need to catch up

    "Allen" <allen-terri-ng!@#att.net> wrote in message
    news:Itlqb.2071 35$0v4.16352149 @bgtnsc04-news.ops.worldn et.att.net...[color=blue]
    > I learned my C++ several years ago (I still use VC++ 4.0). This was
    > pre-standardization and standard template library.
    >
    > 1.) What _topics_ do I need to study in order to update my knowledge to
    > current levels?[/color]
    The standard library itself.
    Proper use of exceptions.
    And probably several C++ idioms that go beyound object-oriented programming.
    [color=blue]
    > 2.) What books can some recommend that would cover this from my point of
    > view (already know C++, just trying to catch up)?[/color]

    Here's my personal recommendation:

    For the library:
    Josuttis' "The C++ standard Library, A tutorial and reference"
    and/or Stroustrup's "The C++ Programming Language"

    Herb Sutter's "(More) Exceptional C++" are a good way to learn
    about several intricacies of the language. You may also want to
    check the online challenges from which the book was derived:


    Also Make sure to go over Scott Meyer's three "(More) Effective C++/STL"
    books, and study any item which does not seem obvious.

    For thrills, check Alexandrescu's "Modern C++ Design".
    Also: "Generative Programming" (Czarnecki)
    "Multi-Paradigm Design for C++" (Coplien)

    [ I skipped over Design Patterns books, as this is not C++ specific.
    "Accelerate d C++" (Koenig&Moo) would also be a good starting point,
    but is more beginner-oriented. You could start with it though. ]


    See also http://www.accu.org/bookreviews/public/index.htm


    hth - Ivan
    --
    Ivan Vecerina - expert in medical devices, software - info, links, contact information, code snippets



    Comment

    • Jon Bell

      #3
      Re: need to catch up

      In article <Itlqb.207135$0 v4.16352149@bgt nsc04-news.ops.worldn et.att.net>,
      Allen <allen-terri-ng!@#att.net> wrote:[color=blue]
      >
      > I learned my C++ several years ago (I still use VC++ 4.0). This was
      >pre-standardization and standard template library.
      >
      >1.) What _topics_ do I need to study in order to update my knowledge to
      >current levels?[/color]

      Number one IMHO is the new stuff in the standard library that came from
      the STL: containers (vectors, strings, lists, etc.) and algorithms.
      [color=blue]
      >2.) What books can some recommend that would cover this from my point of
      >view (already know C++, just trying to catch up)?[/color]

      As an introduction, get Koenig and Moo's "Accelerate d C++". Although it's
      ostensibly intended for newcomers to C++, it's different from every other
      introductory C++ book I've seen in that it uses the "new" standard library
      features from the beginning, in ways that show how powerful they are.

      After that's given you an idea of what the standard library stuff is all
      about, move on to the standard references, namely the 3rd or "special"
      edition of Stroustrup's "The C++ Programming Language" and Josuttis's "The
      C++ Standard Library."

      If you're acquainted with earlier editions of Stroustrup, you'll be
      pleasantly surprised by the new one. The third edition is much bigger
      than the second edition, and more accessible, IMHO.

      --
      Jon Bell <jtbellap8@pres by.edu> Presbyterian College
      Dept. of Physics and Computer Science Clinton, South Carolina USA

      Comment

      • jeffc

        #4
        Re: need to catch up


        "Jon Bell" <jtbellq2f@pres by.edu> wrote in message
        news:bocqot$o3a $1@jtbell.presb y.edu...[color=blue]
        >
        > As an introduction, get Koenig and Moo's "Accelerate d C++". Although it's
        > ostensibly intended for newcomers to C++...[/color]

        I think it's also good for experienced C++ programmers using C++ in an
        (ahem) "old fashioned" way.


        Comment

        Working...