This question has already been answered:
Is it possible? to speed up the work. To get the machine code and then keep it in this form.
This question has already been answered:
Is it possible? to speed up the work. To get the machine code and then keep it in this form.
A similar question was asked earlier and an answer has already been received. If the answers provided are not exhaustive, please ask a new question .
A Java program is compiled into a byte code that is understandable for the JVM, after running the application under the JVM code, the actual code will be transferred to the machine code for execution on the hardware, only you will not be concerned about it. Thus, Java achieves cross-platform.
Source: https://ru.stackoverflow.com/questions/613543/
All Articles
CBecause, for example, in .NET there is a utility Ngen.exe, which transforms a ready-made program (this is also a byte code) into native code. - Vadim Ovchinnikov