Can one still use old C++ books to learn programming?

后端 未结 4 813
-上瘾入骨i
-上瘾入骨i 2021-01-12 08:50

I found Ivor Horton\'s Beginning C++ from 1999 in a book shelf, and I was wondering if it\'s to outdated to be usefull. I allready know some C++, but I\'d like to have book

4条回答
  •  清酒与你
    2021-01-12 09:26

    I would not learn C++ from any book that predates the C++ 11 standard. Ideally, you would lean the C++ 14 standard, as that completes the changes that started in C++ 11. Developing in C++ has changed dramatically since 1999. The C++ 11 standard has ushered in a new way of writing C++ called Modern C++. C++ 11 changed the language so dramatically, that Bjarne Stroustrup the creator of C++ writes:

    C++11 feels like a new language: The pieces just fit together better than they used to and I find a higher-level style of programming more natural than before and as efficient as ever.

    But beyond this, why would you ever want to learn something using a resource you found laying around? Your time is valuable. Treat it that way. Use the best learning resources you can find. A good use of your time is to first spend the time to find the resource the best enables you to learn.

提交回复
热议问题