C++11 on Windows

前端 未结 7 945
慢半拍i
慢半拍i 2021-02-04 01:29

I\'m wondering how well writing software in C++11 works on Windows yet. It would be most comfortable (and propably most natural) to use one of the native compilers for Windows -

7条回答
  •  醉梦人生
    2021-02-04 01:37

    VC's C++11 support is far from complete, but it does include the most important user-facing features.

    And here's the other thing. In my experience, it is fine to install MinGW or Clang on Windows, but you're going to have some inconvenience because hardly anybody precompiles binaries for those compilers for Windows (whereas lots of people precompile binaries for Visual Studio).

    In addition, there are as far as I am aware no environments for Windows which are remotely as advanced as Visual Studio for things like graphical debugging, intellisense, and stuff like that. When I tried Code::Blocks it just didn't work, realistically.

提交回复
热议问题