Comment on The C Programming Language - Part 0Comments−comex14y> So a Java program which is compiled to byte code is actually run as an interpreted program using the jvm as an interpretor.Of course, this is not quite true; large parts of the program are JITted, and the result is sometimes faster than C.
Comments
> So a Java program which is compiled to byte code is actually run as an interpreted program using the jvm as an interpretor.
Of course, this is not quite true; large parts of the program are JITted, and the result is sometimes faster than C.