O slideshow foi denunciado.
Seu SlideShare está sendo baixado. ×

Java-java virtual machine

Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Anúncio
Próximos SlideShares
Java virtual machine
Java virtual machine
Carregando em…3
×

Confira estes a seguir

1 de 14 Anúncio

Mais Conteúdo rRelacionado

Diapositivos para si (20)

Quem viu também gostou (20)

Anúncio

Semelhante a Java-java virtual machine (20)

Mais recentes (20)

Anúncio

Java-java virtual machine

  1. 1. java • Java is a programming language originally developed by James Gosling at Sun Microsystems. • The language derives much of its syntax from C and C+ + but has a simpler object model and fewer low- level facilities. • Java applications are typically compiled to byte code (class file) that can run on any Java Virtual Machine (JVM) regardless of computer architecture.
  2. 2. Virtual machine • Before understanding what is JVM let us first know what virtual machine is. • A virtual machine is a layer of abstraction that gives a program one simplified interface for interacting with a variety of physical computers and their operating systems.
  3. 3. Java virtual machine • As the name indicates, JVM is not a real hardware machine but a software layer which resembles an hardware platform. • JVM converts Java byte code into machine language and executes it. • The byte code can be executed on any platform where there exist JVM.
  4. 4. • JVM‘s are available for many hardware and software platforms. • The use of the same byte code for all JVM’s on all platforms allows Java to be described as a "write once,  run anywhere" programming language. • Thus, the JVM is a crucial component of the Java platform.
  5. 5. Diagram of JVM
  6. 6. Components of JVM 1. Byte code verifier 2. Class loader 3. Execution engine 4. Garbage collector 5. Security Manager
  7. 7. Byte code verifier • As the name suggests, bytecode verifier is used to verify the bytecode. • Bytecode verifier checks for unusual code. • Byte code verifier is a crucial component for security.
  8. 8. Class loader • Class loader loads java classes into java virtual machine. • All Java virtual machines include one class loader that is embedded in the virtual machine. • The main feature of the class loader is that JVM. doesn’t need to have any knowledge about the classes that will be loaded at runtime. • Class loader reads bytecode and creates the instance of java.lang.class.
  9. 9. Execution engine • The execution engine helps JVM to convert bytecode into machine code. • It has two parts: a) Interpreter b) Just-in-time-interpreter • Execution engine is responsible for executing the instructions contained in the methods of loaded classes.
  10. 10. Garbage collector • Garbage collection is the process of automatically freeing objects that are no longer referenced by the program. • It periodically check for the object on heap , whose link is broken so it can collect garbage from heap. • Garbage collection relieves java programmer from memory management.
  11. 11. Security manager • Security manage constantly monitors the code. • It is special java object that is responsible for guarding security policies for java applications. • It is always consulted before any potentially dangerous operation is requested by a java application.
  12. 12. Comparison of JVM Other software: JVM:
  13. 13. • Java Virtual Machine (JVM) is platform independent, meaning it can run on different Operating Systems (OS) like Windows or UNIX. • JVM does not really exist but is created within another environment. • As long as a JVM is available natively to a system, a Java program can run in the system. • The JVM stands on top of the operating system (OS), which means it is independent of the OS.
  14. 14. Advantages • Security • Cross Platform Disadvantages: • Speed • Platform Specific Features

Notas do Editor

  • Interpreter and JIT (just in time) Compiler which convert the byte code instructions into machine language so that processor can execute them.
  • One advantage to using the Java virtual machine (VM) is that the virtual machine attempts to verify all programming before it runs for malicious activity, and even serious errors within a Java program are confined to the virtual machine's sandbox A tremendous advantage of the Java VM is that it allows a program to be written and compiled only once, which then can be run on a wide variety of systems and operating systems without modification. Many cell phones and embedded devices include a Java VM. Dis Since programming must be translated from generic "byte code" to the machine code for the target system as it is being run, it is impossible for Java to perform as quickly as languages that can compile directly to machine code for the target systems. Because the Java VM must run on a wide variety of systems, features specific to one OS are often not implemented into Java programs. In addition, the "look and feel" of Java applications can often be quite different than the default styles of native applications within an operating system.

×