温馨提示×

linux怎么查看c++版本

小亿
83
2024-11-30 09:24:33
栏目: 编程语言

在Linux系统中,可以通过以下几种方法查看C++版本:

  1. 使用g++命令查看C++版本:

打开终端,输入以下命令:

g++ --version

回车后,系统将显示当前安装的g++编译器的版本信息。例如:

g++ (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  1. 使用clang++命令查看C++版本:

如果你安装了Clang编译器,可以使用以下命令查看C++版本:

clang++ --version

回车后,系统将显示当前安装的clang++编译器的版本信息。例如:

clang version 10.0.0 (clang-1000.11.45.5)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/lib/llvm-10/bin
  1. 使用cpp命令查看C++版本:

cpp命令是C预处理器,也可以用来查看C++版本。在终端中输入以下命令:

cpp -E -dM - </dev/null | grep -w __cplusplus

回车后,系统将显示当前系统的C++标准版本信息。例如:

#define __cplusplus 201703L

这里,201703L表示C++17标准。

0