文章目录
一、可视化调试前端软件进行程序代码的跟踪查错
1.安装Visual Studio Code
在ubantu的浏览器中搜索链接https://code.visualstudio.com/docs?dv=linux64
进行下载
使用命令安装并打开
sudo dpkg -i code_1.51.0-1604600753_amd64.deb //安装
code //打开
2.C++运行环境配置并调试
(1)插件的安装
(2)建立工程
由于VScode是以文件夹的形式管理工程的,因此我们首先新建一个文件夹,我这里取名叫hello。然后通过VScode打开此文件夹
(3)新建main.cpp文件并输入程序
(4)进行tasks.json和launch.json的配置
直接运行一下,会出错,但是文件那边会多出一个tasks.json文件,这个也是我们需要修改的文件
修改后的tasks.json和launch.json
tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "g++",
"args": ["-g", "${file}", "-std=c++11", "-o", "${fileBasenameNoExtension}.out"]
}
]
}
launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{