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

I consider a new device or technology to have been culturally accepted when it has been used to commit a murder. -- M. Gallaher

Working...