You can go to look at the java.sun.com that is best introduction website. this website have more primer for the JVM.

解决方案 »

  1.   

    jvm
    java的执行环境  装了jvm才可以运行java
      

  2.   

    这是JAVA能跨平台的关键,JAVA代码编译后生成BYTECODE,然后通过不同机器上的JVM来运行BYTECODE.
      

  3.   

    Java虚拟机是一个想象中的机器,在实际的计算机上通过软件模拟来实现。Java虚拟机有自己想象中的硬件,如处理器、堆栈、寄存器等,还具有相应的指令系统。
    Java语言的一个非常重要的特点就是与平台的无关性。而使用Java虚拟机是实现这一特点的关键。一般的高级语言如果要在不同的平台上运行,至少需要编译成不同的目标代码。而引入Java语言虚拟机后,Java语言在不同平台上运行时不需要重新编译。Java语言使用模式Java虚拟机屏蔽了与具体平台相关的信息,使得Java语言编译程序只需生成在Java虚拟机上运行的目标代码(字节码),就可以在多种平台上不加修改地运行。Java虚拟机在执行字节码时,把字节码解释成具体平台上的机器指令执行。
      

  4.   

    如果你英文可以的话,看看这个教课书上的解释:The JVM(Java Virtual Machine) consists of a class loader, a class verifer, and a java interpreter that executes the architecture-neutral bytecodes. The class loader loads .class files from both the java program and the java API for execution by the java interpreter. After a class is loaded, the verifer checks that the class file is valid java bytecode and does not overflow or underflow the stack. It also ensures that the bytecode does access. If the class passes verification, it is run by the java interpreter. The JVM also automatically manages memory by performing garbage collection -- the practice of reclaiming memory from objects no longer in use and returning it to the system. Much research focuses on garbage collection algorithms for increasing the performance of java programs in the virtual machine.
      

  5.   

    up
    ================================================================CSDN 论坛助手 Ver 1.0 B0402提供下载。 改进了很多,功能完备!★  浏览帖子速度极快![建议系统使用ie5.5以上]。 ★  多种帖子实现界面。 
    ★  保存帖子到本地[html格式]★  监视您关注帖子的回复更新。
    ★  可以直接发贴、回复帖子★  采用XML接口,可以一次性显示4页帖子,同时支持自定义每次显示帖子数量。可以浏览历史记录! 
    ★  支持在线检测程序升级情况,可及时获得程序更新的信息。★★ 签名  ●  
         可以在您的每个帖子的后面自动加上一个自己设计的签名哟。Http://www.ChinaOK.net/csdn/csdn.zip
    Http://www.ChinaOK.net/csdn/csdn.rar
    Http://www.ChinaOK.net/csdn/csdn.exe    [自解压]
      

  6.   

    还有,The java interpreter may be a software module that interprets the bytecodes one at a time, or it may be a just-in-time (JIT) compiler that turns the architecture-neutral bytecodes into native machine language ofr the host computer. Most implementations of the JVM use a JIT compiler for enhanced performance. In other instances, the interpreter may be implemented in hardware that executes java bytecodes natively. The JVM is presented in Figure 3.12Figure 3.12java .class files
       ||
       ||
       \/
    class loader
       |
       V
    verifier
       |
       V
    java interpreter
       /\   ||
       ||   ||
       ||   \/
    host system