Navigating Java call stack in Eclipse(在 Eclipse 中导航 Java 调用堆栈)
问题描述
在像 GDB 这样的调试器中,当你在断点处停止时,你可以轻松地向上移动调用堆栈并检查相关的源和堆栈帧数据.
In debuggers like GDB, when you stop at a breakpoint, you can easily move up the call stack and examine the relevant source and stack frame data.
你如何在 Eclipse 中做到这一点?
How do you do this in Eclipse?
推荐答案
在"调试透视图",显示名为调试"的视图.对于当前暂停的每个线程,此视图显示完整的调用堆栈.单击此堆栈的一个元素会切换编辑器视图以显示相应的类,变量"视图将显示此堆栈元素的变量.
In the "debug perspective", show the view named "debug". For each thread that is currently halted, this view shows the full call stack. Clicking on one element of this stack switches the editor view to display the corresponding class, and "variables" view will show variables of this stack element.
这篇关于在 Eclipse 中导航 Java 调用堆栈的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Eclipse 中导航 Java 调用堆栈


基础教程推荐
- 不推荐使用 Api 注释的描述 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 大摇大摆的枚举 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 从 python 访问 JVM 2022-01-01