如何在 g++ 中使用 C++ 20

How to use C++ 20 in g++(如何在 g++ 中使用 C++ 20)

本文介绍了如何在 g++ 中使用 C++ 20的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试访问 std::popcount,但它似乎是 仅在 C++ 20 中存在.

I am trying to access std::popcount, but it seems like it's only there in C++ 20.

当我尝试使用 g++ -std=c++20 main.cpp 进行编译时,它显示 g++: error: unrecognized command line option '-std=c++20';你是说'-std=c++03'

When I try compiling with g++ -std=c++20 main.cpp, it says g++: error: unrecognized command line option '-std=c++20'; did you mean '-std=c++03'

我如何告诉 g++ 使用 c++ 20?

How do I tell g++ to use c++ 20?

我使用的是 Ubuntu 18.04

I am using Ubuntu 18.04

推荐答案

我会尝试更新 gcc.C++ 20 是在非常新的 gcc 版本 8 中引入的.

I would try updating gcc. C++ 20 was introduced in gcc version 8 which is pretty new.

这篇关于如何在 g++ 中使用 C++ 20的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何在 g++ 中使用 C++ 20

基础教程推荐