`
zzy1943
  • 浏览: 50754 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

(2)chapter 5: The Java Virtual Machine I

阅读更多
  When talking JVM, it may refer any of these:
1. the abstract specification
2. a concrete implementation
3. a runtime instance

The life-cycle of instance of JVM
    Only one mission in the life of a instance of JVM: run one Java application.
Inside one instance of JVM, threads come in tow flavor: daemon and non-daemon. Daemon thread is ordinarily a threads used by the virtual machine iteself, such as garbage collection. The thread start by main() is not a daemon thread.
    When all non-daemon threads terminate, the jvm terminates.

The Architecture of the Java Virtual Machine



the pc register of thread 3 is undefined because it is running a native method

Data Types


This chart depicts the data type of jvm, not java language
All the primitive types of the Java Language are primitive types of the JVM except boolean.
the returnValue is used to implement finally clause


  • 大小: 56 KB
  • 大小: 50.5 KB
  • 大小: 55.2 KB
  • 大小: 23.5 KB
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics