Shortcut to create a method stub in eclipse

被刻印的时光 ゝ 提交于 2019-12-09 14:29:06

问题


I think some shortcut to create a method stub in eclipse might be useful. Does anyone know how to do it?


回答1:


Type public_method (see Java/Editor/Templates in preferences for more options) or method name and press ctrl+space.




回答2:


In Addtion to the accepted answer: Typing pu for a public method (with returntype and name)is enough:

Type pu and then hit CTRL + SPACE and then ENTER.




回答3:


Type your method name and hit Ctrl + Space.

Also worth noting is, type 'test' and hit Ctrl + Space and it will give you the option to create a test method stub.




回答4:


How about loking to this link eclipse ref doc?

It says that : Alt + SHIFT+M" will do , plus many others.




回答5:


If you press ALT + SHIFT+ S.
There comes a dropdown, then select the override/implement methods, from there you can setup and implement the method in the prefered way.




回答6:


One other shortcut to create a method stub is ALT+SHIFT+M. source: http://help.eclipse.org/juno/index.jsp?topic=/org.eclipse.jdt.doc.user/reference/ref-menu-refactor.htm




回答7:


CTRL + 1

(COMMAND + 1 on Mac)

If no superclass method exists to copy and you typed something like "myClass.newMethod(myInt, myEmployee)", Eclipse can generate newMethod in myClass using the types of the arguments provided.



来源:https://stackoverflow.com/questions/2521940/shortcut-to-create-a-method-stub-in-eclipse

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