Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

c++ - How to enable c++20 in Visual Studio 2019 (16.3 preview 4)

How to enable c++20 in Visual Studio 2019 (16.3 preview 4)?
I'm interesting to test some C++20 features.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

C++20 isn't a standard yet. You can chose to enable the latest supported features from the working draft in Visual Studio, however this is obviously neither complete nor guaranteed to be in any way stable:

Right click your project -> Properties -> General -> C++ Language Standard: Select "Preview - Features from the Latest C++ Working Draft (std:c++latest)"


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...