0
Relation between JVM and java class files
What the relation between JVM with class files? It's not clear to me !
1 Réponse
0
The Java Virtual Machine (JVM) simply interprets the code that your write for the class that you are compiling at the moment (Ex: System.out.print("Food is great!");) into something the computer can understand (bytecode then to machine code). Hope this helps.