在Visual Studio Code 中設定Delve 偵錯器以進行Go 開發
在讓VS Code 的Go 擴充工作時遇到困難,特別是深入調試?這是解決此問題的綜合指南。
先決條件:
VS Code 設定:
package main import "fmt" func main() { fmt.Println("Hello World!") i := 101 fmt.Println(i) }
在VS Code 中除錯:
開始除錯 (F5)。
停止調試(Shift F5) 或重新啟動偵錯 (Ctrl Shift F5)。
{ "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 } ] }
以上是如何在 Visual Studio Code 中設定 Delve 偵錯器進行 Go 開發?的詳細內容。更多資訊請關注PHP中文網其他相關文章!