Eclipse自动完成烦恼

huangapple go评论66阅读模式
英文:

Eclipse auto completion irritation

问题

我在Eclipse中使用Java创建了一个Map实例。然后,我想使用put方法将一些数据放入其中。但是,当我输入map.p时,它建议使用compute方法而不是put。我每次都必须使用向下箭头键选择put方法。有没有办法在输入map.p后直接输入put?谢谢。

英文:

I created instance of Map in Java using Eclipse. Then I want to put some data into it using put method. But when I type map.p it suggested compute method instead of put. I have to use down arrow key every time to select put method. Is there any way to go put directly after enter map.p? Thanks.

答案1

得分: 0

尝试一下。

  1. 选择菜单 Window -> Preferences
  2. 选择树形菜单 Java -> Editor -> Content Assist
  3. Sort proposals 的选项从 alphabetically 修改为 by relevance
英文:

Try this.

  1. Select menu Window -> Preferences.
  2. Select tree Java -> Editor -> Content Assist.
  3. Change Sort proposals selection from alphabetically to by relevance.

huangapple
  • 本文由 发表于 2020年7月23日 10:30:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/63045959.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定