visual studio code怎么加入debug调试
时间: 2024-11-28 08:12:20 浏览: 5
Visual Studio Code是一款强大的代码编辑器,支持多种语言的调试功能。要在VS Code中加入调试,你可以按照以下步骤操作:
1. **设置断点**:在源代码中你想暂停执行的地方点击,VS Code会自动插入一个红点表示断点。
2. **配置launch.json**:创建或打开`launch.json`文件,这个文件位于`/.vscode/launch.json`(Windows/Linux)或`~/Library/Application Support/Code/User/launch.json`(Mac)。这里配置启动任务和调试配置,例如选择运行环境(浏览器、Node.js等),指定程序入口。
```json
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Program",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/index.js"
}
]
}
```
3. **启动调试**:使用快捷键`F5`(Windows/Linux)或`Cmd+Shift+F5`(Mac),或通过菜单栏的“Debug”->“Start Debugging”。
4. **调试控制**:在调试过程中,可以使用调试面板(调试工具栏)控制步进执行(Step Over, Step Into, Step Out)、查看变量值、设置条件断点等。
阅读全文