What is a .class file and how do you make them?
Exactly what the title said.
What is a .class file and how do you make them?
# 2 Re: What is a .class file and how do you make them?
Say your source file is Test.java
Test.java --> javac (compiler) --> Test.class (byte code) -->
--> JVM interprets the bytecode of the class file and converts it to operating system specific instructions.
arul at 2007-11-11 22:37:21 >
