+ 3
what is the .class file
3 Antworten
+ 2
When you compile your program, it will automatically create a .class file for every class you have there.
Class files contain bytecode, which is instruction for JVM, which then translates the bytecode into platform-specific (Windows, Linux etc.) machine level instruction.
Thanks to this, Java is platform independent. :-)
+ 1
is a file of java class, compiled :)
0
heores is correct during compilation of source codes it generates .class files for each class. .class now contains java byte code which jvm understands and executes it's human unreadable.