what is meaning of JIT?
Answers were Sorted based on User's Feedback
Answer / mrangababu
JIT :(Just In Time compiler) Execution engine of JVM
contains both Interpreter and JIT compiler both are
combindely used for converting byte code to machine
language instruction ..
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / rushabh doshi gujarat vidyapi
Just In Time compiler
JVM
contains both Interpreter and JIT compiler both are
combindely used for converting byte code to machine
language instruction
Overview
Java(tm) is one of the most dominant programming languages,
and used for a wide range of applications including games
and pervasive devices and mission-critical e-business
applications. A Java program is compiled into an
intermediate language called bytecodes, and it can be
downloaded through the network and executed on any
computers that have Java execution environment. However,
the overhead for interpreting bytecodes is a serious
bottleneck.
We have been researching and developing various techniques
for the Java Just-In-Time Compiler, which allows much
faster execution by compiling bytecodes into native machine
code on the fly. Our JIT compiler is used on almost all
Java platforms of IBM, ranging from network computers (NC)
to mainframes.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / angel
JIT means just-in-time which is also known as dynamic
translation.A jit is a code generator that converts java
bytecode into native machine code.A jit compiler can be used
as a way to speed up execution of bytecode.
| Is This Answer Correct ? | 3 Yes | 2 No |
Explain about arraylist?
Why Static variable required in java?For ex,class A { static int a; int b; } Why static is required?
What is stringreader?
What is import java util arraylist?
What does int argc char * argv [] mean?
Suppose i have two threads t1 and t2 are running.How the main thread will know that the two threads t1,t2 execution has completed?
How can we make sure main() is the last thread to finish in java program?
what is the use/perpose of having a method antive?
What is the most important feature of java? What is an interface?
what is ennumaration?
How do you use compareto?
How use .contains in java?