Skip to main content

Java Virtual Machine (JVM)

 Java Virtual Machine (JVM)


    All language compliers translate source code into machine code for a specific computer. Java complier also do the same things but Java compiler produce an intermediate code known as bytecode. This machine is called as Java Virtual Machine(JVM) and it is exists only inside the computer memory with java. It is simulated computer within computer and does all major functions of real computer.


     The virtual machine code is not machine specific. The machine specific code is generated by the Java Interpreter by acting as an intermediary between the virtual machine and the real machine. The interpreter is different for different machine.


The java object framework acts as the intermediary between the user program and virtual machine which turns act as the intermediary between operatinf system and the java object framework.



Comments

Popular posts from this blog

Decision Making and Branching Statements / Control Statements

 Introduction     Java is a set of statements which executed sequentially in the order in which they appear. This will happen when option or repetitions of certains are not necessary. However, We have a number of situation, where we may have to change the order of execution of statement on bases of certain conditions. This involves a kind of dicision making to see the particular condition occured or not and the direction of execution will execute according to it.     When program braks the sequential flow and jump on the another part of code then it's called branching . When branching is on particular condition then it's called conditional branching . If branches executes without any particular conditions then it's call unconditional branching .     Java supports such decision making capabilities and supports following statements known as Control statement or Decision making statement .     if statements     switch statement   ...