C++ std:format 在 VS2022 /std:c++latest 中不可用
C++ std:format not available in VS2022 /std:c++latest
我正在尝试在 Visual Studio 2022 年使用 C++ std::format。
在最初尝试“ISO C++20 标准 (/std:c++) 20)
下面的 post 似乎表明选择预览标准应该有效,但我没有足够的状态直接评论 post。
std::format 应该使用 #include 语句在 VS2022 中工作吗?
Should std::format work in VS2022 with the #include statement?
可以,但目前只能在 /std:c++latest
(预览)模式下使用,您可以在 Project\Properties\Configuration\Properties\C++ Language Standard
中设置。
我正在尝试在 Visual Studio 2022 年使用 C++ std::format。
在最初尝试“ISO C++20 标准 (/std:c++) 20)
下面的 post 似乎表明选择预览标准应该有效,但我没有足够的状态直接评论 post。
std::format 应该使用 #include 语句在 VS2022 中工作吗?
Should std::format work in VS2022 with the #include statement?
可以,但目前只能在 /std:c++latest
(预览)模式下使用,您可以在 Project\Properties\Configuration\Properties\C++ Language Standard
中设置。