donglu9825 2019-09-04 02:34
浏览 69
已采纳

如何使用Go's Delve和Visual Studio Code将对象的值“打印”到控制台?

I have the "Delve" debugger setup for Go with Visual Studio code and a super simple program. If I set a breakpoint, and I want to print a variable declared earlier, I'm used to being able to say po foo to print out the value of the object foo to the console, but Visual Studio Code just complains about "expected 'EOF'".

How do I print? If I wanted to test things out by printing out values, does Delve not support that?

  • 写回答

1条回答 默认 最新

  • dtwy2858 2019-09-04 04:59
    关注

    In debug console type foo (without po prefix)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?