windows操作系统下,在使用vscode时,编译一次后,再修改过代码,代码不生效,给出3钟解决方法,并给出相应的launch.json和tasks.json的配置文件代码
时间: 2023-12-11 08:05:57 浏览: 218
vscode配置文件c-cpp-properties.json/launch.json/task.json
问题描述:在使用 Visual Studio Code 编写 C/C++ 代码时,修改代码后再次编译运行时发现代码没有生效。
解决方法:
1. 关闭 Visual Studio Code,重新开启,再次编译运行。
2. 使用 Visual Studio Code 自带的终端进行编译运行。
3. 在 tasks.json 文件中添加 "args": ["-g", "${file}", "-o", "${fileDirname}\\${fileBasenameNoExtension}"] 配置,以便在每次编译时清除缓存。
launch.json 配置文件代码:
```json
{
"version": "0.2.0",
"configurations": [
{
"name": "C++ Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:/MinGW/bin/gdb.exe",
"preLaunchTask": "C++ Build"
}
]
}
```
tasks.json 配置文件代码:
```json
{
"version": "2.0.0",
"tasks": [
{
"label": "C++ Build",
"type": "shell",
"command": "g++",
"args": ["-g", "${file}", "-o", "${fileDirname}\\${fileBasenameNoExtension}"],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$gcc"
}
]
}
```
注意:以上配置文件代码是基于 MinGW 环境下的,如果你使用的是其他编译器环境,需要相应地进行修改。
阅读全文