How does Java enable high performance? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 8

How does Java enable high performance?

12th Jun 2019, 3:25 AM
Abhivarshini Maddala
Abhivarshini Maddala - avatar
3 Answers
+ 7
Mainly due to its byte code and java virtual machine
12th Jun 2019, 8:18 AM
Rohit
+ 6
Java enabled High performance by introducing JIT- Just In Time compiler , JIT helps the compiler to compile the code On demand basis i.e which ever method is called only that method block will get compiled making compilation fast n time-efficient. This makes the java delivering high performance.
12th Jun 2019, 9:15 AM
A͢J
A͢J - avatar
+ 2
Java uses Just-In-Time compiler to enable high performance. Just-In-Time compiler is a program that turns Java bytecode, which is a program that contains instructions that must be interpreted into instructions that can be sent directly to the processor.
13th Jun 2019, 4:12 PM
Anni Kumari
Anni Kumari - avatar