Learning C++ without an IDE

前端 未结 9 719
无人共我
无人共我 2021-02-02 14:14

I\'ve recently started to learn C++ and am completely confused with the choices of IDEs and compilers out there. I am competent with interpreted languages and like the simplicit

9条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-02 14:58

    I'd say to start out with Visual Studio. This is a great IDE for programming C++ on windows, might as well use it when it can speed up certain things a lot.

    The differences between compilers aren't that huge - if you can write solid code in VS then it shouldn't be a problem to figure out how to get your code working in GCC/G++.

    As for books; Exceptional C++ by Herb Sutter and The C++ Programming Language by Bjarne Stroustrup are a great read.

    Visual Studio is the way to go when developing for Windows.

提交回复
热议问题