What does “Insert common prefixes automatically” do in Eclipse?

廉价感情. 提交于 2019-12-23 08:29:27

问题


I was looking for a way to improve autocompletion in Eclipse and I found this preference setting "insert common prefixes automatically" in the preference window, section Java -> Editor -> Content Assist.

I wonder what it does because I didn't feel any difference. The help says:

If enabled, code assist will automatically insert the common prefix of all possible completions similar to Unix shell expansion. This can be used repeatedly, even while the code assist window is being displayed.


回答1:


It only applies in a (relatively) small number of cases.

Imagine you have an interface with methods

public interface Farm {
   public int getNumberOfDucks();
   public int getNumberOfChickens();
   public int getNumberOfGeese();
}

then if you have this option turned on and type

farm.getN<control-space>

it will autocomplete to

farm.getNumberOf

before it shows you the menu. Without it, it will show you the menu straight away, without filling anything in.

It only seems to work for members, and not for classes.



来源:https://stackoverflow.com/questions/4824168/what-does-insert-common-prefixes-automatically-do-in-eclipse

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!