vscode配置c++开发环境
时间: 2023-10-10 18:04:27 浏览: 273
1. 安装C/C++扩展:在扩展商店中搜索C/C++,安装Microsoft提供的C/C++扩展。
2. 安装编译器:在Windows上,可以安装MinGW或者Visual Studio;在Mac上,可以安装Xcode;在Linux上,可以安装GCC。
3. 配置编译器路径:在VS Code中,按下Ctrl + Shift + P,输入“C/C++: Edit Configurations”,选择“C/C++: Edit Configurations (JSON)”,在打开的文件中添加以下配置:
```json
"configurations": [
{
"name": "Win32",
"includePath": ["${workspaceFolder}/**"],
"defines": ["_DEBUG", "UNICODE", "_UNICODE"],
"compilerPath": "C:/MinGW/bin/gcc.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64"
}
],
```
其中,“compilerPath”为编译器的路径,“cStandard”和“cppStandard”为C语言和C++语言的标准版本,可以根据需要进行修改。
4. 配置调试器:在VS Code中,按下Ctrl + Shift + P,输入“C/C++: Edit Configurations”,选择“C/C++: Edit Configurations (JSON)”,在打开的文件中添加以下配置:
```json
"configurations": [
{
"name": "Win32",
"includePath": ["${workspaceFolder}/**"],
"defines": ["_DEBUG", "UNICODE", "_UNICODE"],
"compilerPath": "C:/MinGW/bin/gcc.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64",
"program": "${workspaceFolder}/a.exe",
"request": "launch",
"type": "cppvsdbg"
}
],
```
其中,“program”为编译生成的可执行文件的路径。
5. 编写代码:在VS Code中,新建一个文件,输入C语言或C++语言的代码。
6. 编译运行:按下F5键,VS Code会自动编译代码并启动调试器,可以在调试器中查看变量的值和程序的运行状态。
阅读全文