Is C++11 available in Visual Studio 2017?

前端 未结 4 1242
轮回少年
轮回少年 2020-12-16 14:04

I am currently using Visual Studio Community 2017. From looking at the C++ Language Standards in the project properties, they only provide C++14 and C++17. Since my code was

4条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-16 14:22

    C++ is an evolving standard - after 2003 there was 2011 (C++11) then 2014 (C++14) and now we have 2017 (C++17) and we're working towards 2020 (C++20). They're upward compatible.

    Look here for Microsoft Visual C++ support for the various standards.

提交回复
热议问题