Java compiler: Difference between revisions

Content deleted Content added
Bluebot (talk | contribs)
m Fixing C++ links
Tribaal (talk | contribs)
m disambiguation link repair (You can help!)
Line 8:
* [[GCJ]] a part of [[gcc]] which compiles C, Fortran, Pascal and others besides Java. This can also generate native code using the back-end of gcc.
 
The bytecode generated is later compiled [[just-in-time]] to machine code and optimized using [[dynamic compilation]]. Most Java compilers, Jikes being the only exception, do virtually no [[Optimization (computer science)|optimization]], leaving this until [[runtime]] to be done by the [[JRE]]. Even though each compiler uses a different technique, they all generate the same format of bytecode.
 
==See also==