Interview Questions  

Go Back   Interview Questions > Interview Questions & Answers > Information Technology > Java > Core Java

Core Java Core Java Interview Questions, Learn by sharing Core Java Interview Questions asked in various companies, Get Career advices, Interview Procedures from Core Java experts, Post asked Core Java Interview Questions and Answers.

   

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 02-29-2008, 09:16 AM
Senior Member
 
Join Date: Feb 2008
Posts: 1,210
Default What is JIT

What is JIT?
Reply With Quote
  #2 (permalink)  
Old 07-25-2008, 06:37 AM
Member
 
Join Date: Jul 2008
Location: West Bengal,India
Posts: 48
Default

Short for just-in-time compiler, a code generator that converts Java bytecode into machine language instructions. Some Java Virtual Machines (VMs), including the VM in the Netscape Navigator browser, include a JIT in addition to a Java interpreter. Java programs compiled by a JIT generally run much faster than when the bytecode is executed by an interpreter.
__________________
Asit Kumar Purohit.
SRIC,IIT Kharagpur.
West Bengal,India
Mail me
Reply With Quote
  #3 (permalink)  
Old 07-26-2008, 10:31 AM
Junior Member
 
Join Date: Jul 2008
Posts: 3
Default

When JVM compiles the class file he does not compile the full class file in one shot. Compilation is done on function basis or file basis. Advantage gained from this is that heavy parsing of original source code is avoided. Depending on need basis the compilation done. This type of compilation is termed as JIT or Just-In-Time compilation.
Reply With Quote
Reply

Tags
core java, java, software

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On