vscode配置c++
时间: 2023-07-17 12:58:06 浏览: 112
在 Ubuntu 上安装 VSCode 和配置 C++ 的步骤如下:
1. 安装 VSCode:在 Ubuntu 的软件中心中搜索 VSCode 并安装。
2. 安装 C/C++ 插件:在 VSCode 中打开扩展面板(Ctrl + Shift + X),搜索并安装 C/C++ 插件。
3. 安装编译器:在终端中运行以下命令安装 g++ 编译器:sudo apt-get install g++
4. 配置编译器:在 VSCode 中打开设置(Ctrl + ,),搜索 c_cpp_properties.json,点击编辑并在其中添加以下配置:
```
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++14",
"intelliSenseMode": "gcc-x64"
}
],
"version": 4
}
```
5. 编写代码:在 VSCode 中打开一个新文件并编写 C++ 代码。
6. 编译&运行代码:在 VSCode 中打开终端(Ctrl + `),运行 g++ 文件名.cpp -o 文件名 编译代码,再运行 ./文件名 运行程序。
阅读全文