Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
-2 votes
2 answers
738 views

Converting Java code run by dependency to native code

Is it, at least theoretically, possible to convert a Java application into native code that can be run by something else written in Java? One example of this could be a Minecraft Spigot server. You ...
User's user avatar
  • 3
37 votes
8 answers
13k views

What is the use of converting source code to Java bytecode?

If one needs different JVMs for different architectures I can't figure out what is the logic behind introducing this concept. In other languages we need different compilers for different machines, but ...
Pranjal Kumar's user avatar
6 votes
6 answers
12k views

Is Java Bytecode interpreted? [closed]

The definition of interpretation (correct me if I'm wrong) is parsing code like so: 1- Translate currently parsed line to some intermediate language. 2- Run the translated line. 3- Move to the next ...
NPElover's user avatar
  • 181