下载链接: VScode 安装过程:一路下一步,安装很简单,安装路径看个人
按下图安装:
下载地址:MinGW
下载的文件:进入网站后不要点击 “Download Lasted Version”,往下滑,找到最新版的 “x86_64-posix-seh”。
安装MinGW:下载后是一个7z的压缩包,解压后移动到你想安装的位置即可。我的安装位置是:D:\mingw64\bin
配置对象:MinGW,所以把你刚刚安装MinGW的路径拷贝一下
配置环境变量:在此以win10为例,到达第6步之后,前面打开的窗口都要按下确定,否则会失败
验证一下环境变量是否配置成功。 按下 win + R,输入cmd,回车键之后输入gcc -v
(1)新建空文件夹hello
(2)打开VScode --> 打开文件夹 --> 选择刚刚创建的文件夹hello
(3)新建hello.cpp文件
#include<stdio.h>
#include<stdlib.h>
int main(){
printf("hello world! I\'m VSCode\n");
system("pause");
return 0;
}
(1)运行----启动调试(F5)
会在工作目录(即hello文件夹)下的生成一个launch.json的启动配置文件,修改launch.json。下图是修改过的
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) 启动",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": true, //改为true
"preLaunchTask": "task g++", //新增项
"MIMode": "gdb",
"miDebuggerPath": "D:\\mingw64\\bin\\gdb.exe", //MinGW位置
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
返回.cpp文件,按F5进行调试,会弹出找不到任务"task g++",选择 “配置任务”,会自动生成 tasks.json 文件。
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "task g++",
"command": "D:\\mingw64\\bin\\g++.exe",
"args": [
"-g", //g++ -g
"${file}", //g++ -g main.cpp
"-o", //g++ -g main.cpp -o
"${fileDirname}\\${fileBasenameNoExtension}.exe" //g++ -g main.cpp -o main.exe
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"panel": "shared"
}
}
]
}
可以在终端直接输入程序运行
或者运行----启动调试(F5)
一劳永逸:因为VS需要为每一个文件夹做单独配置,所以建议把.vscode文件夹放到你常用的文件夹的顶层,这样就不用重复配置了。不用每个新cpp文件就要一套配置。这些配置在你配置好的文件夹内的所有子文件夹和文件都能使用。