VScode 编译无法出现黑框
时间: 2023-10-16 12:06:32 浏览: 169
使用vscode编译keil工程的资源
在 VScode 编译时无法出现黑框可能是因为没有正确配置任务运行程序。可以尝试在 VScode 中打开“任务”面板,然后选择“配置任务”,在弹出的下拉菜单中选择你想要运行的编程语言,然后根据你的需要进行配置。例如,如果你想要运行 C++ 程序,可以在配置任务中添加以下代码:
```
{
"version": "2.0.0",
"tasks": [
{
"label": "Build and run C++ code",
"type": "shell",
"command": "g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$gcc"
}
]
}
```
这样就可以在 VScode 中编译和运行 C++ 代码,并且在黑框中显示程序的输出。
阅读全文