5

I using sout + Tab shortcut in IntelliJ IDEA for System.out.println(); statement. I want know if there are any synonyms of above shortcut in MyEclipse?

Mat
  • 195,986
  • 40
  • 382
  • 396
Sam
  • 6,452
  • 7
  • 45
  • 81

2 Answers2

6

In Eclipse you can type the following (so I guess MyEclipse does the same):

Sysout + CTRL-SPACE
Guillaume Polet
  • 46,469
  • 4
  • 81
  • 115
2

Actually you can do something similar in Eclipse (even with slightly less letters to type):

syso + CTRL-SPACE  == System.out.println();
syse + CTRL-SPACE  == System.err.println();

Those are part of the many predefined templates found in Window > Preferences, Java | Editor | Templates

Simon Baslé
  • 24,205
  • 5
  • 60
  • 63