我想使用 C++17 特性.
I want to use C++17 features.
如何在 Microsoft Visual Studio 中将编译从 C++14 切换到 C++17?
How can I switch compiling from C++14 to C++17 in Microsoft Visual Studio?
或者它在 VS 的发布版本中不可用?
Or it's not avaiable in release versions of VS?
现在有一个下拉菜单(至少从 VS 2017.3.5 开始),您可以在其中专门选择 C++17.可用的选项是(在项目 > 属性 > C/C++ > 语言 > C++ 语言标准下)
There's now a drop down (at least since VS 2017.3.5) where you can specifically select C++17. The available options are (under project > Properties > C/C++ > Language > C++ Language Standard)
/std:c++14
/std:c++17
Visual Studio 2021:
Visual Studio 2021:
/std:c++20
任何 Visual Studio:
Any Visual Studio:
/std:c++latest
这篇关于如何在 Visual Studio 中启用 C++17 编译?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!