用于调试递归代码的可视化工具
当调试多次递归调用的代码时,有时很难意识到您所看到的代码执行的是哪个。有没有任何 IDE 图形工具可以帮助您通过图表或其他方式查看该内容?
when debugging code which's called recursively many times, sometimes it gets difficult to realize which execution of the code you are seeing. Is there any IDE graphic tool which helps to see that with diagrams or something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个非常古老且已经回答的主题,但 Visual Studio 具有并行调试窗口,可让您查看变量的状态。调用堆栈通常很难跟踪。
请参阅 Kaycee Anderson 的 MSDN 博客
以下是摘自博客的参考
Now this is an very old and already answered topic but Visual Studio has the parallel debugging window which allows you to see the state of your variables. Callstack is typically very hard to track.
See more in Kaycee Anderson's MSDN blog
Here is a reference taken from the blog
我认为您在 Visual Studio 中寻找“调用堆栈”。其他 IDE 也有类似的功能。
I think your looking for "Call Stack" in Visual Studio. Other IDEs have similar functionality.