eclipse之如何查看一个类所实现的接口中的方法

假如我们要查看getBean方法

ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
HelloWorld helloWorld = (HelloWorld) ctx.getBean("helloWorld");

1.选中类或接口-> 按住Ctrl敲鼠标左键-> Window -> show view -> Outline

eclipse之如何查看一个类所实现的接口中的方法_第1张图片
2.选中找到的接口并复制->打开查找类文件转载Ctrl+Shift+T ->黏贴后单击Open
eclipse之如何查看一个类所实现的接口中的方法_第2张图片

eclipse之如何查看一个类所实现的接口中的方法_第3张图片

你可能感兴趣的:(Java,web,eclipse,eclipse)