使用Delve 在Visual Studio Code 中調試Go 程式碼
在Visual Studio Code 中設定Delve 偵錯器以進行Go 開發需要以下內容步驟:
先決條件:
設定:
使用鍵盤快速鍵控制偵錯器:
示例配置:
{ "version": "0.2.0", "configurations": [ { "name": "Launch", "type": "go", "request": "launch", "mode": "debug", "program": "${workspaceRoot}", "env": {}, "args": [] } ] }
範例程式碼:
package main import "fmt" func main() { fmt.Println("Hello World!") i := 101 fmt.Println(i) }
結果:
Visual Studio Code 將啟動偵錯器調試窗格。您可以將滑鼠懸停在變數上以查看它們的值並使用斷點單步執行程式碼。
以上是如何使用 Delve 在 Visual Studio Code 中偵錯 Go 程式碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!