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 调用堆栈
基础教程推荐
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 在螺旋中写一个字符串 2022-01-01