Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror

Comment I love Eclipse (Score 4, Interesting) 171

Best Java IDE I have ever used. goes way beyond code completion for method names. Type for then ctrl-space You get three choices, iterate over an aray, iterate over an array with temporary varialble iteraate over a collection. Choice one an it gueses the array/colleciton to use from available variables and puts the type cast in the loop eg

Collection list = null;

for (Iterator iter = list.iterator(); iter.hasNext();) {
type element = (type) iter.next();

}
Refactoring for
  • pulling up a method
  • extracting a method from a codeblock
  • replacing all occurance of a string with a variable
  • surround with try/catch
and more

Slashdot Top Deals

It is impossible to enjoy idling thoroughly unless one has plenty of work to do. -- Jerome Klapka Jerome

Working...