在Visual Studio Code 中使用Delve 調試器進行Go 開發
如果您在Visual Studio Code 中使用Delve 調試器進行開發時遇到問題進行開發,以下詳細步驟將引導您完成設定流程:
安裝並設定Go 環境:
安裝 Visual Studio Code:
在VS Code 中安裝Go 擴充:
Shift D
)。開始調試:
重新啟動調試:Ctrl
Shift
{ "version": "0.2.0", "configurations": [ { "name": "Launch", "type": "go", "request": "launch", "mode": "debug", "remotePath": "", "port": 2345, "host": "127.0.0.1", "program": "${workspaceRoot}", "env": {}, "args": [], "showLog": true } ] }F5
package main import "fmt" func main() { fmt.Println("Hello World!") i := 101 fmt.Println(i) }
Launch.json 配置:
未修改的launch.json 檔案供參考:
範例Go 程式碼示範偵錯:預期輸出:偵錯器將在設定的斷點處中斷,並允許您單步執行程式碼、檢查變數和控製程式的執行。以上是如何在 Visual Studio Code 中設定和使用 Delve 偵錯器進行 Go 開發?的詳細內容。更多資訊請關注PHP中文網其他相關文章!