Eclipse IDE中的快捷方式

时间:2013-06-21 09:30:35

标签: eclipse

是否有任何删除Eclipse中未使用变量的快捷方式?像我们如何删除未使用的进口?拥有大量代码时,这条捷径将非常有用。

2 个答案:

答案 0 :(得分:1)

在代码部分的左侧,任何未使用的变量都会有一个波浪形的黄色下划线和一侧的错误/警告条中的一个小警告框。不幸的是,没有键盘快捷键。

答案 1 :(得分:1)

You can Clean Up function under Source menu.

For example, if you want to delete all variables which have unused warnings, you can do that like the following:

  1. Open the Clean Up under the Source on menu bar.
  2. Select Use custom profile radio button.
  3. Select Configure... button on right side.
  4. Select Unnecessary Code tab.
  5. Tick Remove unused private members
  6. OK and Finish

This is not the shortcut, but it might be helpful for you.