Re: Franco
a JAVA permie. Even worse. :rollin
It works like this. You write C#, VB.NET or any of the .NET compliant source code.
You compile it into an assembly (a dll or exe to you and me). The assembly contains MSIL a type of non-cpu specific machine language.
When you run the assembly, the JIT compiler converts the MSIL to native machine code on the fly (in memory), optimised for the CPU. This compilation occurs when the assembly is loaded into memory (so there is a small delay the 1st time it runs).
Now I know Java has JIT (hotspot) or something, but it can't be any good because it came from Sun Microsystems.
a JAVA permie. Even worse. :rollin
It works like this. You write C#, VB.NET or any of the .NET compliant source code.
You compile it into an assembly (a dll or exe to you and me). The assembly contains MSIL a type of non-cpu specific machine language.
When you run the assembly, the JIT compiler converts the MSIL to native machine code on the fly (in memory), optimised for the CPU. This compilation occurs when the assembly is loaded into memory (so there is a small delay the 1st time it runs).
Now I know Java has JIT (hotspot) or something, but it can't be any good because it came from Sun Microsystems.


Comment