• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

What is the difference between compilers?

 
Ranch Hand
Posts: 419
Mac jQuery Objective C
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I was going through one article http://www.javaspecialists.eu/archive/Issue068.html . In this article he explained that there is difference between the Eclipse's compiler and Sun's compiler. I tried to understand the difference explained in the article but I was not able to get it properly. Can any one let me know that which kind of compiler is used by Eclipse and What is the difference that makes it faster than Sun's compiles. Thanks!

 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It doesn't really matter -- the article you link is old, and is comparing old versions of Eclipse and Sun's JDK compiler. Neither compiler will use StringBuffer anymore; they'll use StringBuilder, a new class introduced in Java 5.
 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Here is the difference:
http://stackoverflow.com/questions/314572/bug-in-eclipse-compiler-or-in-javac

(Eclipse 3.4, java 6 sun compiler)

try google with "generics eclipse sun compiler difference"
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic