C++ books for beginner?

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

    C++ books for beginner?

    Hi,

    Im starting to learn C++ and am looking to get myself a textbook to
    help me along.

    Can anyone on here recommend a book which will give me good
    foundations and take me up to OOP etc in clear concise steps.

    Most books I have flicked through so far seem to be threw together in
    a few months and have little structure, poor explanations and
    irrelevent examples etc.

    As well as being able to program in C++, I want to understand the
    actual language.

    I have looked at SAMS Teach yourself C++ in 21 days and Dietel &
    Dietel's C++ Programming. Unfortunately the D&D book was wrapped so I
    could not see what its structure was like.

    Help guide me through the maze of poorly written books to a simple,
    well structured book, that has plenty of example code.

    It would be advantageous if it had exercises at the chapter end and
    answers at the back!!!


    Let me know what you think,


    Cheers.
  • Peter van Merkerk

    #2
    Re: C++ books for beginner?

    > Im starting to learn C++ and am looking to get myself a textbook to[color=blue]
    > help me along.
    >
    > Can anyone on here recommend a book which will give me good
    > foundations and take me up to OOP etc in clear concise steps.
    >
    > Most books I have flicked through so far seem to be threw together in
    > a few months and have little structure, poor explanations and
    > irrelevent examples etc.
    >
    > As well as being able to program in C++, I want to understand the
    > actual language.
    >
    > I have looked at SAMS Teach yourself C++ in 21 days and Dietel &
    > Dietel's C++ Programming. Unfortunately the D&D book was wrapped so I
    > could not see what its structure was like.
    >
    > Help guide me through the maze of poorly written books to a simple,
    > well structured book, that has plenty of example code.
    >
    > It would be advantageous if it had exercises at the chapter end and
    > answers at the back!!!
    >
    > Let me know what you think,[/color]

    Accelerated C++ (http://www.acceleratedcpp.com) is generally considered
    as one of the best beginners books for people with some programming
    experience. For book reviews take a look at www.accu.org

    HTH

    --
    Peter van Merkerk
    peter.van.merke rk(at)dse.nl


    Comment

    • Josephine Schafer

      #3
      Re: C++ books for beginner?


      "Gerry" <gerardmckeown@ hotmail.com> wrote in message
      news:f5ac660e.0 310280442.686b6 72e@posting.goo gle.com...[color=blue]
      > Hi,
      >
      > Im starting to learn C++ and am looking to get myself a textbook to
      > help me along.
      >
      > Can anyone on here recommend a book which will give me good
      > foundations and take me up to OOP etc in clear concise steps.
      >
      > Most books I have flicked through so far seem to be threw together in
      > a few months and have little structure, poor explanations and
      > irrelevent examples etc.
      >
      > As well as being able to program in C++, I want to understand the
      > actual language.
      >
      > I have looked at SAMS Teach yourself C++ in 21 days and Dietel &
      > Dietel's C++ Programming. Unfortunately the D&D book was wrapped so I
      > could not see what its structure was like.
      >
      > Help guide me through the maze of poorly written books to a simple,
      > well structured book, that has plenty of example code.
      >
      > It would be advantageous if it had exercises at the chapter end and
      > answers at the back!!!
      >
      >
      > Let me know what you think,
      >
      >
      > Cheers.[/color]

      Apart from Accelarated C++, C++ Primer by Lippman/Lajoie is also definitely a
      good book to start with, IMO.

      HTH,
      J.Schafer


      Comment

      • Benny Hill

        #4
        Re: C++ books for beginner?

        On Tue, 28 Oct 2003 04:42:22 -0800, Gerry wrote:

        * snip request for book recommendations *

        Hi Gerry,

        If you make it through your "Teach Yourself C++ in 21 Days" type of book
        and decide that you still like and want to use C++ I'd recommend buying:

        "The C++ Standard Library: A Tutorial and Reference" by Josuttis.

        This is not necessarily a beginner's book but I personally feel that the
        standard template library needs to be introduced early on in a person's
        C++ career. It would be handy to be learning about std::string and
        std::vector the same time someone is learning about char* and double[],
        etc.

        Anyway, a good place to buy computer books is www.bookpool.com

        --
        Benny
        Remove your rose colored glasses before e-mailing me

        Comment

        • jeffc

          #5
          Re: C++ books for beginner?


          "Gerry" <gerardmckeown@ hotmail.com> wrote in message
          news:f5ac660e.0 310280442.686b6 72e@posting.goo gle.com...[color=blue]
          >
          > Help guide me through the maze of poorly written books to a simple,
          > well structured book, that has plenty of example code.[/color]

          Recommendations here


          Buy here



          Comment

          • Jimmy Dubke

            #6
            Re: C++ books for beginner?

            "Gerry" <gerardmckeown@ hotmail.com> wrote in message
            news:f5ac660e.0 310280442.686b6 72e@posting.goo gle.com...[color=blue]
            > Hi,
            >
            > Im starting to learn C++ and am looking to get myself a textbook to
            > help me along.
            >
            > Can anyone on here recommend a book which will give me good
            > foundations and take me up to OOP etc in clear concise steps.
            >
            > Most books I have flicked through so far seem to be threw together in
            > a few months and have little structure, poor explanations and
            > irrelevent examples etc.
            >
            > As well as being able to program in C++, I want to understand the
            > actual language.
            >
            > I have looked at SAMS Teach yourself C++ in 21 days and Dietel &
            > Dietel's C++ Programming. Unfortunately the D&D book was wrapped so I
            > could not see what its structure was like.
            >
            > Help guide me through the maze of poorly written books to a simple,
            > well structured book, that has plenty of example code.
            >
            > It would be advantageous if it had exercises at the chapter end and
            > answers at the back!!!
            >
            >
            > Let me know what you think,
            >
            >
            > Cheers.[/color]

            If you are trying to come up to speed on Linux at the same time as you are
            coming up to speed on C++ then Tom Swan's, GNU C++ for Linux, published by
            QUE, is very detailed and leaves little to the imagination. Further Swan's
            book contains methodical practical examples. The examples are accompanied
            by instructions regarding the use of the debugger to load and execute the
            example programs found in the book.

            The book contains a CD that has all of the example sources organized on a
            chapter by chapter basis. Each example is accompanied by a detailed
            sequence of commands necessary to compile the example, and presents expected
            output of the compile, and output of the program's execution.

            JD


            Comment

            • Alan Kelon

              #7
              Re: C++ books for beginner?

              Hi,

              I've D&D - C++ How to Program and is very good! I advice it :-)

              Regards,
              Alan Kelon

              P.S.: I don't speak english very well, so please forgive me if my writting
              offends you or even if you don't understand what I mean. Please correct me
              and help me learn english :-)


              Comment

              • Peter van Merkerk

                #8
                Re: C++ books for beginner?

                > I've D&D - C++ How to Program and is very good! I advice it :-)

                Note that not everyone shares that opinion:


                --
                Peter van Merkerk
                peter.van.merke rk(at)dse.nl


                Comment

                • jeffc

                  #9
                  Re: C++ books for beginner?


                  "Alan Kelon" <kelon.ufpb@bol .com.br> wrote in message
                  news:bnnt7d$2cr i$1@news.wplus. net...[color=blue]
                  > Hi,
                  >
                  > I've D&D - C++ How to Program and is very good! I advice it :-)[/color]

                  advise


                  Comment

                  • Bruno Desthuilliers

                    #10
                    Re: C++ books for beginner?

                    Gerry wrote:[color=blue]
                    > Hi,
                    >
                    > Im starting to learn C++ and am looking to get myself a textbook to
                    > help me along.
                    >
                    > Can anyone on here recommend a book which will give me good
                    > foundations and take me up to OOP etc in clear concise steps.
                    >
                    > Most books I have flicked through so far seem to be threw together in
                    > a few months and have little structure, poor explanations and
                    > irrelevent examples etc.
                    >
                    > As well as being able to program in C++, I want to understand the
                    > actual language.
                    >
                    > I have looked at SAMS Teach yourself C++ in 21 days[/color]

                    Forget that one, and any other Teach Yourself Nothing(tm) crap.
                    [color=blue]
                    > and Dietel &
                    > Dietel's C++ Programming. Unfortunately the D&D book was wrapped so I
                    > could not see what its structure was like.
                    >
                    > Help guide me through the maze of poorly written books to a simple,
                    > well structured book, that has plenty of example code.[/color]

                    I'm not sure this is the best C++ book around, but it's not bad and at
                    least free : Thinking in C++ (Bruce Eckel)



                    HTH,
                    Bruno

                    [color=blue]
                    > It would be advantageous if it had exercises at the chapter end and
                    > answers at the back!!!
                    >
                    >
                    > Let me know what you think,
                    >
                    >
                    > Cheers.[/color]

                    Comment

                    • Alan Kelon

                      #11
                      Re: C++ books for beginner?


                      Hi, Peter,
                      [color=blue][color=green]
                      > > I've D&D - C++ How to Program and is very good! I advice it :-)[/color]
                      >
                      > Note that not everyone shares that opinion:
                      > http://www.accu.org/bookreviews/publ...p/cp003204.htm[/color]

                      Yes, sure. I've the portuguese version of this book. It was very useful to
                      me, but you or everyone can join or not join with me.

                      [off-topic]
                      One thing:
                      I you see on the web a page says: "Send US$ 1,000 for Alan Kelon [Highly
                      Recommended]"
                      Will you send me money?

                      *No flames, please* It's just a comment :-)
                      [/off-topic]

                      P.S.: I don't speak english very well, so please forgive me if my writting
                      ofends you or even if you don't understand what I mean. Be frieldly please,
                      so correct me
                      and help me learn english.


                      Comment

                      Working...