Over the last 7-8 years what are the biggest influences on C++ programming?

前端 未结 12 2093
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-07 18:53

I started programming in C++. It was my first language, but I have not used it in many years.

What are the new developments in the C++ world? What are the BIG things -

相关标签:
12条回答
  • 2021-02-07 19:41

    Good books to help prospective C++ programmers learn how to use the language properly. Effective C++ by Scott Meyers was a massive help for me. There are other threads on C++ books.

    0 讨论(0)
  • 2021-02-07 19:43

    To me, besides the already mentioned boost, TMP, MC++D etc., the shift away from teaching C++ as "C plus some extras" towards "C++ is a very different language that's not to be used like C" is very important. That would make Koenig/Moo "Accelerated C++" is a huge influence, even though it's a beginners book and even though it's a beginners book that has (with only 250 pages) much too steep a learning curve.

    Stroustrup had been saying things about a better language hidden within C++ and the need to teach it better, but I never really understood what he meant until, after 10 years of C++ programming and experience in TMP, I read the book and was enlighted. :^> It's not that I learned any new technical facts from the book. It just taught me a better way to look at (and teach) C++.

    And, yes, I have been programming different since then.

    0 讨论(0)
  • 2021-02-07 19:45

    Qt is also pretty useful, 'pretty', well-documented, portable, and free (now under LGPL).

    0 讨论(0)
  • 2021-02-07 19:48

    Commercially available whole-program and profile-guided optimization from various C++ compilers, notably Intel's and Microsoft's. In particular, cross-module inlining makes it easier to write well-factored code that blazes.

    0 讨论(0)
  • 2021-02-07 19:52

    Developers who actually understand OO rather than C with Classes.

    Though the field is still full of C programmers with think they know C++ (but don't they are just C with Classes people).

    0 讨论(0)
  • 2021-02-07 19:53

    Although it started in 1998, but it really got going in the last 7-8 years, the boost libraries have added a huge amount of high quality code, which in many ways has helped keep c++ somewhat up to date with the capabilities of more modern languages.

    0 讨论(0)
提交回复
热议问题