Delphi 7:如何查看调用堆栈中局部变量上部的值?
在 Delphi 7 中,调试时我可以看到当前上下文局部变量 (Ctrl-Alt-L) 和调用堆栈 (Ctrl-Alt-S)。当我将调用堆栈导航回调用方方法时,我不知道如何检查调用方局部变量。是否可以?
这是我的老毛病。我可以用我编程过的所有语言来完成此操作,但不能用 Delphi 来完成。
In Delphi 7, while debugging I can see the current context local variables (Ctrl-Alt-L), and the call stack (Ctrl-Alt-S). When I navigate the call stack back to the caller methods, I don't know how to inspect the caller local variables. Is it possible?
This is an old pet peeve of mine. I can do it in all the languages I've programmed, but not in Delphi.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的功能已添加到 Delphi 2005 中的 Win32 调试器:
在 Delphi 7 中,局部变量视图始终显示执行中断的函数的局部变量。
The feature you are looking for was added to the Win32 debugger in Delphi 2005:
In Delphi 7 the local variables view always shows the local variables for the function in which execution has broken on.