How to use C++ 20 in g++(如何在 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
基础教程推荐
- 详解c# Emit技术 2023-03-25
- C利用语言实现数据结构之队列 2022-11-22
- 如何C++使用模板特化功能 2023-03-05
- C++使用easyX库实现三星环绕效果流程详解 2023-06-26
- C++中的atoi 函数简介 2023-01-05
- C++详细实现完整图书管理功能 2023-04-04
- C语言 structural body结构体详解用法 2022-12-06
- 一文带你了解C++中的字符替换方法 2023-07-20
- C/C++编程中const的使用详解 2023-03-26
- C语言基础全局变量与局部变量教程详解 2022-12-31