如何在 Eclipse 中获得完全限定的类名?
有没有一种快速的方法可以在 Eclipse 中单击 Java 类并获取其完全限定名,或者将其复制到剪贴板?
Is there a fast way to click on a Java class in Eclipse and obtain its fully qualified name, or copy it to the clipboard?
推荐答案
试试这个:
- 将鼠标指针悬停在编辑器窗口中的类名上,它可以在代码中出现类名的任何位置
- 在出现的弹出窗口中,双击完全限定名称
- 按Ctrl + c复制
或者:
- 在项目资源管理器中(一般是左侧窗口),点击类名
- 按 Alt + ENTER 显示属性窗口
- 选择并复制类的路径.但是您需要手动将
/
字符替换为.
- In the project explorer (generally the left window), click on a class name
- Press Alt + ENTER to display the properties window
- Select and copy the class' path. But you'll need to manually replace the
/
characters with.
相关文章