answersLogoWhite

0


Best Answer

Java compiles to Java byte code; the native language of the Java virtual machine (JVM). The JVM is essentially just an interpreter for Java byte code. Each supported platform has its own JVM implementation so the same Java byte code can be executed upon any platform without further compilation, unlike C++ where source code must be compiled separately for each supported platform. However, interpretation results in slower execution speed and higher resource consumption than with C++ which compiles to native machine code.

User Avatar

Wiki User

6y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

6y ago

Compiling the source code means that it is translated into bytecode - a file with the extension .class. I don't think Java generates anything AFTER that.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

byte code is generated

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does java generate after compiling the java source code?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Extension file for Java?

Java source files have the .java extension, compiled Java class files have the .class extension.


What do you compile?

Compiling is the act of translating human-readable source code to machine-readable byte code.In Java, the compiler program is javac


What is Java byte-code level language?

Java byte-code is the code which generate after the compilation of .java file.And this code is only understand by JVM(java virtual machine ) which understand it and execute it.In other languages this type of functionality is not available.


What kind of file contain java source code?

'.java' files contain java source code. One can access these files on windows by using 'notepad'.


Where does source code come from in java?

Source code comes from the programmer...


What does the Java compiler translate Java source code to?

The Java compiler translates Java source code to Java byte code.


Java source code for median filter algorithm?

research is going on to develop a source code for median filtering using java


Differencitate between source code and bytcode in java?

The source code is just the set of statements written in (any included) java language by a programer (in this case our source code is a text file with .java extension). And in other hand a bytecode is the resulting code of compile a .java file, It is not machine code, but it can be interpreted and executed by the jvm.


What does a compiler perform?

A compiler converts high-level source code into native machine. In the case of Java, source code is compiled to Java byte code suitable for interpretation by the Java virtual machine which produces the machine code.


Where does bytecode come from java?

It is created by the Java compiler, based on the source code (the .java file).


How would you convert a folder full of class files to java files with the correct names for re-compiling?

I use JD-GUI to de-compile class files back into their java equivalents. This has saved me once or twice when I lost the source code on a project and I needed to update it.


How do you extract the java source code of a java based open source software?

If the software is open source then generally they will provide the code in a separate link. I don't think it is possible to reverse-engineer the code of a program.