英文:
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
尝试一下。
- 选择菜单
Window -> Preferences
。 - 选择树形菜单
Java -> Editor -> Content Assist
。 - 将
Sort proposals
的选项从alphabetically
修改为by relevance
。
英文:
Try this.
- Select menu
Window -> Preferences
. - Select tree
Java -> Editor -> Content Assist
. - Change
Sort proposals
selection fromalphabetically
toby relevance
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论