2 Questions:

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

    2 Questions:

    1) I am considering whether to dedicate a considerable amount of time
    to learning C++. If anybody has insights into what attributes and
    skills are neccesary to become moderately proficient in C++, I would
    be grateful.


    2) I have got a book to help me learn C++ with, Sams "Teach yourself
    C++ in 21 days" (AS IF!) by Jessie Liberty. If anybody is familiar
    with this text and C++, I wonder if they could let me know whether
    they thought it was any good.

    John
  • Alf P. Steinbach

    #2
    Re: 2 Questions:

    On 24 Jan 2004 12:40:36 -0800, eaglesdare@fast mail.fm (john) wrote:
    [color=blue]
    >1) I am considering whether to dedicate a considerable amount of time
    >to learning C++. If anybody has insights into what attributes and
    >skills are neccesary to become moderately proficient in C++, I would
    >be grateful.[/color]

    That's a goobledegook "manager-wannabe-question". It's meaningless,
    sort of "what is the best strategy for adding 2 and 2?", only instead of
    right out saying the problem is "2+2" some nonsense generalization is
    used. The only way to find out if you have what it takes is to try.


    [color=blue]
    >2) I have got a book to help me learn C++ with, Sams "Teach yourself
    >C++ in 21 days" (AS IF!) by Jessie Liberty. If anybody is familiar
    >with this text and C++, I wonder if they could let me know whether
    >they thought it was any good.[/color]

    Reportedly it's absolutely not a good a book.

    However, Jessie Liberty himself has maintained in this newsgroup that
    most of the most glaring errors and omissions have been corrected in
    the latest edition(s) -- that may or may not be correct...

    Generally, if you already know one other programming language, the
    recommended book is "Accelerate d C++".

    Comment

    • Jonathan Turkanis

      #3
      Re: 2 Questions:

      "john" <eaglesdare@fas tmail.fm> wrote in message
      news:1dcfc0a1.0 401241240.2745a b6@posting.goog le.com...[color=blue]
      > 1) I am considering whether to dedicate a considerable amount of[/color]
      time[color=blue]
      > to learning C++. If anybody has insights into what attributes and
      > skills are neccesary to become moderately proficient in C++, I would
      > be grateful.
      >[/color]

      I believe anyone (of average intelligence) should be able to become
      moderately proficient in C++. People with a special aptitude for
      technical matters have a bit of an advantage. Certainly if you are
      moderately proficient in any other programming language, you should be
      able to become moderately proficient in C++.
      [color=blue]
      >
      > 2) I have got a book to help me learn C++ with, Sams "Teach yourself
      > C++ in 21 days" (AS IF!) by Jessie Liberty. If anybody is familiar
      > with this text and C++, I wonder if they could let me know whether
      > they thought it was any good.
      >[/color]

      I'm a bit embarrassed to say so, but I believe I read book with that
      title a couple of years ago. From the title, you might think it would
      be garbage, but I think it actually wasn't too bad. I wouldn't
      recommend spending a lot of time on it, but it probably wouldn't hurt
      to read through it quickly (if you are able) to get a quick overview
      of the language. For a solid foundation, the following are considered
      excellent:

      Accelerated C++ (Koenig & Moo)
      The C++ Primer, 3rd Ed. Lojoie and Lippman (*not* Prata)
      The C++ Programming Language, 3rd. or special editions
      (Stroustrup)

      Jonathan



      Comment

      • Thomas Matthews

        #4
        Re: 2 Questions:

        john wrote:[color=blue]
        > 1) I am considering whether to dedicate a considerable amount of time
        > to learning C++. If anybody has insights into what attributes and
        > skills are neccesary to become moderately proficient in C++, I would
        > be grateful.[/color]

        Be aware that progrmming requires more than just knowing a language.
        There are data structures, recursive algorithms, iterative algorithms,
        design patterns, object-oriented approach, numerical analysis,
        encapsulation and coupling to name a few. Know a language is the
        foundation and the place to start.

        You will need some knowledge of the target requirements. For example,
        if you are writing a loan application, you will need to know about
        processing loans. If you are writing a program to control air valves
        then you will need to know some electronics, mechanics and control
        theory. Be propared to make a deep investment in knowledge.


        --
        Thomas Matthews

        C++ newsgroup welcome message:

        C++ Faq: http://www.parashift.com/c++-faq-lite
        C Faq: http://www.eskimo.com/~scs/c-faq/top.html
        alt.comp.lang.l earn.c-c++ faq:

        Other sites:
        http://www.josuttis.com -- C++ STL Library book
        http://www.sgi.com/tech/stl -- Standard Template Library

        Comment

        • Mike Wahler

          #5
          Re: 2 Questions:


          "Thomas Matthews" <Thomas_Matthew sSpamBotsSuck@s bcglobal.net> wrote in
          message news:40142722.1 090500@sbcgloba l.net...[color=blue]
          > john wrote:[color=green]
          > > 1) I am considering whether to dedicate a considerable amount of time
          > > to learning C++. If anybody has insights into what attributes and
          > > skills are neccesary to become moderately proficient in C++, I would
          > > be grateful.[/color]
          >
          > Be aware that progrmming requires more than just knowing a language.
          > There are data structures, recursive algorithms, iterative algorithms,
          > design patterns, object-oriented approach, numerical analysis,
          > encapsulation and coupling to name a few. Know a language is the
          > foundation and the place to start.[/color]

          A language is important, yes. But I think more fundamental is
          problem solving skills. One problem that is constantly needing
          a solution is the location of needed information.
          [color=blue]
          > You will need some knowledge of the target requirements. For example,
          > if you are writing a loan application, you will need to know about
          > processing loans. If you are writing a program to control air valves
          > then you will need to know some electronics, mechanics and control
          > theory. Be propared to make a deep investment in knowledge.[/color]

          Exactly. As I tell folks constantly, if you can't do something yourself,
          you have no hope of telling a computer (by writing a program) how to do it.

          -Mike


          Comment

          • Jon Bell

            #6
            Re: 2 Questions:

            In article <1dcfc0a1.04012 41240.2745ab6@p osting.google.c om>,
            john <eaglesdare@fas tmail.fm> wrote:[color=blue]
            >1) I am considering whether to dedicate a considerable amount of time
            >to learning C++. If anybody has insights into what attributes and
            >skills are neccesary to become moderately proficient in C++, I would
            >be grateful.[/color]

            Do you have any programming experience in some other language, or are you
            learning to program from scratch, as well as learning C++? It makes a
            difference in the resources that people are likely to recommend to you.

            As far as general skills are concerned, I would say that in order to
            become a good programmer, you need to have good organization skills. One
            of the best students I've ever had was actually an English major! He knew
            how to organize his thoughts and write effective expository prose, and he
            was able to carry that over into organizing his programs logically.

            Also, you need to have a good eye for detail. In written English, we can
            tolerate minor grammatical slipups or mislaid punctuation, but a C++
            compiler (or any other language's compiler, for that matter) does not
            forgive things like missing semicolons or unbalanced parentheses.

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

            Comment

            • The Directive

              #7
              Re: 2 Questions:

              [snip]
              [color=blue]
              >
              > 2) I have got a book to help me learn C++ with, Sams "Teach yourself
              > C++ in 21 days" (AS IF!) by Jessie Liberty. If anybody is familiar
              > with this text and C++, I wonder if they could let me know whether
              > they thought it was any good.[/color]

              For a newbie, I recommend the book "C++ Primer Plus (4th Edition) by Stephen
              Prata". (Don't confuse it with the other book "C++ Primer by Lipman")

              --The Directive
              [color=blue]
              > John[/color]




              -----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
              http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
              -----== Over 100,000 Newsgroups - 19 Different Servers! =-----

              Comment

              • Jonathan Turkanis

                #8
                Re: 2 Questions:


                "The Directive" <the_directive@ hotmail.com> wrote in message
                news:4017323d_8 @corp.newsgroup s.com...[color=blue]
                > [snip]
                >[/color]
                [color=blue]
                >
                > For a newbie, I recommend the book "C++ Primer Plus (4th Edition) by[/color]
                Stephen[color=blue]
                > Prata". (Don't confuse it with the other book "C++ Primer by[/color]
                Lipman")[color=blue]
                >[/color]

                I agree with the parenthetical remark.

                Jonathan


                Comment

                Working...