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 |
Why collection is called framework in java?
What is Major and importance difference between for and foreach loop ?
What is the purpose of the System class?
make a method which any number and any type of argument and print sum of that arguments.....
How do you use spaces in java?
What are the data types supported by java? What is autoboxing and unboxing?
What is arrays sort in java?
How many bytes is a character?
how u do unit testing?
Is constructor inherited?
What is meant by method?
Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.