Comment Re:Rethink your approach, perhaps (Score 1) 690
Aiiighghghghhhhh!!!! Why, why, why do people keep saying this?!
Java is a compiled language. The Java source you write gets turned into native machine code. It's just that the compilation happens at runtime, unlike with many other languages where it happens earlier. Same process, different time.
Java is normally used as a compiled language, however it is not entirely accurate to say that it gets converted to native code always. It depends on what you are using to compile the source and run the resulting output.
If you use a standard Java compiler, the output is a JVM class file image consisting of byte-code instructions and meta-data. If this is then loaded in Sun's JVM for instance, it may be JIT compiled into native code--but it could also be interpreted. This depends on how the JVM instance is configured to use the JIT compiler. There are other JVM implementations that in fact are just use an interpreter.
In fact there exists a Java compiler that emit native code statically too.
The same goes for the Common Language Infrastructure (i.e.