如何在 Eclipse 中获得完全限定的类名?

2022-01-16 00:00:00 class eclipse-plugin java 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?

推荐答案

试试这个:

  1. 将鼠标指针悬停在编辑器窗口中的类名上,它可以在代码中出现类名的任何位置
  2. 在出现的弹出窗口中,双击完全限定名称
  3. Ctrl + c复制

或者:

  1. 在项目资源管理器中(一般是左侧窗口),点击类名
  2. Alt + ENTER 显示属性窗口
  3. 选择并复制类的路径.但是您需要手动将 / 字符替换为 .
  1. In the project explorer (generally the left window), click on a class name
  2. Press Alt + ENTER to display the properties window
  3. Select and copy the class' path. But you'll need to manually replace the / characters with .

相关文章