我有一個(gè)文件夾 D:\Data\Git\go\src\demo ,其中包含一個(gè)文件 main.go。我已經(jīng)安裝了go1.12.6 windows/amd64。(我運(yùn)行的是 Windows 10)我無法調(diào)試應(yīng)用程序 - 調(diào)試器在屏幕上閃爍然后消失 ==> 什么也沒有發(fā)生 ==> 即使我設(shè)置了斷點(diǎn),它也不會(huì)中斷交互式步驟的代碼 -通過!我可以從命令行運(yùn)行應(yīng)用程序 ==> go run main.go (當(dāng)前目錄是 main.go 所在的位置)我的 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": [ { "name": "Launch", "type": "go", "request": "launch", "mode": "auto", "program": "${fileDirname}", "env": {}, "args": [] } ]}這是我的應(yīng)用程序:package mainimport "fmt"func main() { s := []int{2, 3, 5, 7, 11, 13} s = s[1:4] fmt.Println(s)}如何在 VS Code 中進(jìn)行調(diào)試?
1 回答

catspeake
TA貢獻(xiàn)1111條經(jīng)驗(yàn) 獲得超0個(gè)贊
答案如下:
Ctrl+Shift+P ==> 打開 Launch.json ==> 保存 ==> 瞧!
(它有效。我現(xiàn)在可以使用 Visual Studio Code 中的一個(gè) main.go 文件單步調(diào)試并調(diào)試一個(gè)簡(jiǎn)單的應(yīng)用程序)
- 1 回答
- 0 關(guān)注
- 167 瀏覽
添加回答
舉報(bào)
0/150
提交
取消