如何在Eclipse中运行时查找接口类?

时间:2016-04-13 20:16:31

标签: eclipse debugging

我有一堆类,一个特定的实例被声明为接口...我如何在eclipse中找到超类/类是什么?

MyInterface john;
john = StaticBuilder.person; // returning some instance that is MyInterface

代码要复杂得多但是我希望有一种方法可以找出当我使用Eclipse时按键是什么类的ctrl +点击它显然只是带我进入界面,当我越来越深入时我发现自己处于一个通过几十个课程。

1 个答案:

答案 0 :(得分:1)

实际的课程显示在variables view

enter image description here

john.getClass()处的断点处放置并停止后,

或仅评估Display view中的john = ...

enter image description here