Visual Studio Code 的C++环境配置
时间: 2024-01-16 07:03:31 浏览: 100
为了在 Visual Studio Code 中编写和运行 C 代码,需要进行以下环境配置:
1. 安装 C 编译器:在 Windows 操作系统中,可以安装 GCC 或者 Clang 编译器。在 Linux 或者 macOS 操作系统中,可以直接使用系统自带的 GCC 或者 Clang 编译器。安装方法可以参考厂商官方文档。
2. 安装 Visual Studio Code:在官网下载 Visual Studio Code 并安装。
3. 安装 C/C++ 插件:在 Visual Studio Code 中搜索并安装 C/C++ 插件,可以方便地进行 C 代码编写和调试。
4. 配置 launch.json 文件:在 Visual Studio Code 中打开要运行的 C 代码文件,按下 F5 键,会自动生成 launch.json 文件。在该文件中进行配置:
```
{
"version": "0.2.0",
"configurations": [
{
"name": "C Debug",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/a.out",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"preLaunchTask": "C/C++: gcc build active file"
}
]
}
```
其中`program`字段指定了要运行的 C 代码文件路径,`preLaunchTask`字段指定了编译 C 代码的任务名称。如果没有自定义任务,可以使用默认任务。
5. 配置 tasks.json 文件:在 Visual Studio Code 中打开要运行的 C 代码文件,按下 Ctrl+Shift+B 键,会自动生成 tasks.json 文件。在该文件中进行配置:
```
{
"tasks": [
{
"type": "shell",
"label": "C/C++: gcc build active file",
"command": "/usr/bin/gcc",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"version": "2.0.0"
}
```
其中`command`字段指定了编译 C 代码的命令,`args`字段指定了编译命令的参数,`problemMatcher`字段指定了编译错误的匹配规则。
6. 运行 C 代码:在 Visual Studio Code 中按下 F5 键即可运行 C 代码。可以在终端中查看输出结果。
阅读全文