vscode的c/c++配置

首先,下载两个插件

vscode的c/c++配置_第1张图片
c/c++和Code Runner,缺一不可。

然后打开一个工作区(可以提前在文件夹中编辑好类似的目录)

vscode的c/c++配置_第2张图片

接下来,在练习下新建一个helloWorld.cpp的文件

可以在里面输入如下代码
vscode的c/c++配置_第3张图片

#include  
using namespace std;  
int main(void)  
{  
   cout<<"hello world";  
   return 0;  
}

接下来点击运行或者点击播放符号

在这里插入图片描述
在这里插入图片描述

然后系统会生成一个c_cpp_properties.json的文件在.vscode下

vscode的c/c++配置_第4张图片

更改c_cpp_properties.json文件中的compilerPath为g++路径即可

vscode的c/c++配置_第5张图片
在这里插入图片描述

这个位置如果报错根据需要给成相应的东西,自行百度即可。

最后,附上我的文件配置:

1、c_cpp_properties.json

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "windowsSdkVersion": "8.1",
            "compilerPath": "C:\\MinGW\\bin\\g++.exe",
            "cStandard": "c11",
            "cppStandard": "c++17",
            "intelliSenseMode": "gcc-x64"
        }
    ],
    "version": 4
}

2、launch.json

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "cpp.exe - 生成和调试活动文件",
            "type": "cppdbg",
            "request": "launch",
            "program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "miDebuggerPath": "C:\\MinGW\\bin\\gdb.exe",
            "setupCommands": [
                {
                    "description": "为 gdb 启用整齐打印",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ],
            "preLaunchTask": "C/C++: cpp.exe build active file"
        }
    ]
}

tasks.json

{
    "tasks": [
        {
            "type": "shell",
            "label": "C/C++: cpp.exe build active file",
            "command": "C:\\MinGW\\bin\\cpp.exe",
            "args": [
                "-g",
                "${file}",
                "-o",
                "${fileDirname}\\${fileBasenameNoExtension}.exe"
            ],
            "options": {
                "cwd": "${workspaceFolder}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ],
    "version": "2.0.0"
}

你可能感兴趣的:(vscode配置)