Category:Java: Difference between revisions

Content added Content deleted
m (Changed intrawiki links around)
m (Added intrawiki links)
Line 1: Line 1:
{{language|Java}}The '''Java''' programming language, developed by [[Sun Microsystems]], is a language aimed at allowing high performance, cross-platform application development.
{{language|Java}}The '''Java''' programming language, developed by [[Sun Microsystems]], is a language aimed at allowing high performance, cross-platform application development.


Java source files (.java files) are typically [[Compiler|compiled]] to an intermediate [[bytecode]] language (.class files) and executed by a [[Java Virtual Machine]]. Most modern JVMs further compile the bytecode of a Java program into your processors' native machine code during execution. This native code translation is done via a [[Just-In-Time|JIT]] compiler that is built-in to the JVM. Some Java compilers (such as [[GCJ]]) can compile Java code to native machine code ahead-of-time rather than just-in-time.
Java source files (.java files) are typically [[Compiler|compiled]] to an intermediate [[bytecode]] language (.class files) and executed by a [[Java Virtual Machine]]. Most modern JVMs further compile the bytecode of a Java program into your processors' native machine code during execution. This native code translation is done via a [[Just-In-Time|JIT]] compiler that is built-in to the JVM. Some Java compilers (such as [[GCJ]]) can compile Java code to native machine code ahead-of-time rather than just-in-time.




Line 10: Line 10:
* Automatic memory management
* Automatic memory management
* Huge user community
* Huge user community
* Well supported by the open-source community and commercial industry (Sun, IBM, [[Oracle]], HP, BEA, [[Mac OS X|Apple]], etc.)
* Well supported by the open-source community and commercial industry ([[Sun Microsystems|Sun]], [[IBM]], [[Oracle]], HP, BEA, [[Mac OS X|Apple]], etc.)