Learning C++

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

    Learning C++

    Hi everyone,

    I am learning c++ using the deitel c++ how to program 4th edition. I am
    currently finishing chapter 7 and I am pretty blown away. I am not really
    having trouble understanding the code or concepts it just seems like a ton
    to learn/remember. I was hoping some of you more experience c++ programmers
    could give me some tips on online resources for code and books that I should
    buy to accompany the ones I have now (the deitel book and c++ programming
    for linux).

    Thanks in advance,

    Shock


  • Mike Wahler

    #2
    Re: Learning C++


    "Shock" <shock56@charte r.net> wrote in message
    news:vp0ser11l3 b3b9@corp.super news.com...[color=blue]
    > Hi everyone,
    >
    > I am learning c++ using the deitel c++ how to program 4th edition.[/color]

    IMO a good quality text.
    [color=blue]
    > I am
    > currently finishing chapter 7 and I am pretty blown away. I am not really
    > having trouble understanding the code or concepts it just seems like a ton
    > to learn/remember.[/color]

    Your perception is accurate. C++ is a very large language
    (compared to C for example). I don't think anyone can
    'remember' all of it, that's why we have so many books
    around. I own hundreds of programming books, probably
    around 20-25 are specifically about C++, its standard
    library, and C++ design and usage techniques. And I'm
    saving my nickels to buy more... :-)

    There are also some good trade publications, such as
    C/C++ Users Journal (www.cuj.com) which have good articles
    'from the trenches', written by practicing professionals.
    [color=blue]
    >I was hoping some of you more experience c++ programmers
    > could give me some tips on online resources for code and books that I[/color]
    should[color=blue]
    > buy to accompany the ones I have now (the deitel book and c++ programming
    > for linux).[/color]




    Sections 6,7,8 probably of particular interest to you.

    C++ is a platform-independent language, so your host
    platform doesn't really matter, as long as a C++
    implementation for it is available.

    And remember, we're all here, willing to assist
    when you want/need it.

    Good luck!

    HTH,
    -Mike


    Comment

    • Benny Hill

      #3
      Re: Learning C++

      On Fri, 17 Oct 2003 17:48:55 -0500, Shock wrote:

      * snip request for book recommendations *
      [color=blue]
      > Thanks in advance,
      >
      > Shock[/color]

      Hey Shock,

      1) The C++ Standard Library by Josuttis



      2) Design Patterns by Gamma, et. al.



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

      Comment

      • Mike Wahler

        #4
        Re: Learning C++

        "Benny Hill" <benny_hill3@yo ur_rose_colored _glassesyahoo.c om> wrote in
        message
        news:pan.2003.1 0.17.23.38.04.6 82018@your_rose _colored_glasse syahoo.com...[color=blue]
        > On Fri, 17 Oct 2003 17:48:55 -0500, Shock wrote:
        >
        > * snip request for book recommendations *
        >[color=green]
        > > Thanks in advance,
        > >
        > > Shock[/color]
        >
        > Hey Shock,
        >
        > 1) The C++ Standard Library by Josuttis
        > http://www.bookpool.com/.x/3zn8pi9590/sm/0201379260
        >
        >
        > 2) Design Patterns by Gamma, et. al.
        > http://www.bookpool.com/.x/3zn8pijbfr/sm/0201633612[/color]

        While both are excellent books that imo every C++ coder
        should eventually own, I feel they're rather 'advanced'
        for the novice, as 'Shock' seems to be.

        Shock: Do note these titles for later.

        -Mike


        Comment

        • Alan Morgan

          #5
          Re: Learning C++

          In article <vp0ser11l3b3b9 @corp.supernews .com>,
          Shock <shock56@charte r.net> wrote:[color=blue]
          >Hi everyone,
          >
          >I am learning c++ using the deitel c++ how to program 4th edition. I am
          >currently finishing chapter 7 and I am pretty blown away. I am not really
          >having trouble understanding the code or concepts it just seems like a ton
          >to learn/remember. I was hoping some of you more experience c++ programmers
          >could give me some tips on online resources for code and books that I should
          >buy to accompany the ones I have now (the deitel book and c++ programming
          >for linux).[/color]

          Effective C++ is often recommended but I'll give it a particular plug for someone
          at your level (knows a bit but is starting to feel lost). Meyer's approach of
          explaining why you should and shouldn't do certain things gave me a much better
          understanding of what some features of C++ were there for. My understanding of
          what virtual functions do and what problems they try to solve was improved by his
          example of a particular bit of hard to maintain code that is made much easier with
          virtual functions. After reading that I actually understood why I should use them,
          not just how to use them. Don't really *get* friend functions? Read up on when
          you should use friend functions and when you should use member functions.

          If it's too advanced for you now then put it aside and come back to it later.

          Alan
          --
          Defendit numerus

          Comment

          • Shock

            #6
            Re: Learning C++

            Thanks everybody. I got a lot of good resources and books recommendations .
            I have to say that I have done visual basic, php, javascript, cobol (yuck),
            ada, and a few other languages and I like c++ the best. I am looking
            forward to using your recommendations and getting better and better.

            Thanks again,

            Shock

            "Alan Morgan" <amorgan@Xenon. Stanford.EDU> wrote in message
            news:bmq6r4$93o $1@Xenon.Stanfo rd.EDU...[color=blue]
            > In article <vp0ser11l3b3b9 @corp.supernews .com>,
            > Shock <shock56@charte r.net> wrote:[color=green]
            > >Hi everyone,
            > >
            > >I am learning c++ using the deitel c++ how to program 4th edition. I am
            > >currently finishing chapter 7 and I am pretty blown away. I am not[/color][/color]
            really[color=blue][color=green]
            > >having trouble understanding the code or concepts it just seems like a[/color][/color]
            ton[color=blue][color=green]
            > >to learn/remember. I was hoping some of you more experience c++[/color][/color]
            programmers[color=blue][color=green]
            > >could give me some tips on online resources for code and books that I[/color][/color]
            should[color=blue][color=green]
            > >buy to accompany the ones I have now (the deitel book and c++ programming
            > >for linux).[/color]
            >
            > Effective C++ is often recommended but I'll give it a particular plug for[/color]
            someone[color=blue]
            > at your level (knows a bit but is starting to feel lost). Meyer's[/color]
            approach of[color=blue]
            > explaining why you should and shouldn't do certain things gave me a much[/color]
            better[color=blue]
            > understanding of what some features of C++ were there for. My[/color]
            understanding of[color=blue]
            > what virtual functions do and what problems they try to solve was improved[/color]
            by his[color=blue]
            > example of a particular bit of hard to maintain code that is made much[/color]
            easier with[color=blue]
            > virtual functions. After reading that I actually understood why I should[/color]
            use them,[color=blue]
            > not just how to use them. Don't really *get* friend functions? Read up[/color]
            on when[color=blue]
            > you should use friend functions and when you should use member functions.
            >
            > If it's too advanced for you now then put it aside and come back to it[/color]
            later.[color=blue]
            >
            > Alan
            > --
            > Defendit numerus[/color]


            Comment

            • jeffc

              #7
              Re: Learning C++


              "Shock" <shock56@charte r.net> wrote in message
              news:vp0ser11l3 b3b9@corp.super news.com...[color=blue]
              > Hi everyone,
              >
              > I am learning c++ using the deitel c++ how to program 4th edition. I am
              > currently finishing chapter 7 and I am pretty blown away. I am not really
              > having trouble understanding the code or concepts it just seems like a ton
              > to learn/remember. I was hoping some of you more experience c++[/color]
              programmers[color=blue]
              > could give me some tips on online resources for code and books that I[/color]
              should[color=blue]
              > buy to accompany the ones I have now (the deitel book and c++ programming
              > for linux).[/color]

              In addition to the online version of the C++ FAQ, you should also purchase
              the book C++ FAQs by Cline. It's bigger and has more stuff than the online
              version. A great resource, easy and succinct.


              Comment

              Working...