Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 delve 调试 Go 时,仅显示局部变量。
我看不到所有的全局变量。
是否有任何设置更改以查看所有变量的列表
这里a没有显示,即使我将鼠标悬停在它上面,它的值也不会出现。
a
局部变量选项卡将仅显示其名称所暗示的局部变量。
但对我来说,你能做的最好的事情就是手动将所需的变量添加到你的观察列表中。只需单击监视选项卡(左面板)中的“+”图标,然后选择要在调试时监视的变量。
此答案中提供了更多详细信息