Click to See Complete Forum and Search --> : What is a .class file and how do you make them?


TheMagnitude
03-04-2006, 12:23 PM
Exactly what the title said.
What is a .class file and how do you make them?

Phaelax
03-04-2006, 02:56 PM
It is a compiled java file. You make them by compiling java classes

arul
03-08-2006, 08:11 PM
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.