I used IntellJ idea for development to 2 past year but now using MyEclipse. I use psvm + Tab short key for generate public static void main(String[] args) method, I want know synonymous of this short key exist in MyEclipse? (I couldn’t find or defined new short key in MyEclipse in Preferences/General/Keys)
I used IntellJ idea for development to 2 past year but now using MyEclipse.
Share
In MyEclipse and also in Eclipse,
Ctrl+Spacebaris used to view autocomplete suggestions. In your current class, just start to type “main”, as you enterm,a,...letters, useCtrl + Spacebaranytime to see suggestions/autocompleting options. You will findmain methodat the top of the list.Another option is having checkbox of
public static void main(String[] args)checked for the question of “Which method stubs would you like to create?” that is visible in the dialog window opening upon your “new class” creation event. Try it.