Java Virtual Machine: Difference between revisions

From Rosetta Code
Content added Content deleted
(Removed stub tag. Added small explanation of JVM. Additions welcome.)
m (Added to the encyclopedia)
Line 1: Line 1:
The '''Java Virtual Machine''' or '''JVM''' interprets [[Java]] byte code (compiled Java code) and runs the program. JVM's have been created for many different platforms, which gives Java its platform-independent nature. It manages memory usage via a garbage collector. It also manages concurrent threads (the programmer can attempt to control certain threads, though).
{{encyclopedic}}The '''Java Virtual Machine''' or '''JVM''' interprets [[Java]] byte code (compiled Java code) and runs the program. JVM's have been created for many different platforms, which gives Java its platform-independent nature. It manages memory usage via a garbage collector. It also manages concurrent threads (the programmer can attempt to control certain threads, though).

Revision as of 01:03, 11 January 2008

Template:EncyclopedicThe Java Virtual Machine or JVM interprets Java byte code (compiled Java code) and runs the program. JVM's have been created for many different platforms, which gives Java its platform-independent nature. It manages memory usage via a garbage collector. It also manages concurrent threads (the programmer can attempt to control certain threads, though).