当前位置:网站首页>2: Chapter 1: understanding JVM specification 1: introduction to JVM;
2: Chapter 1: understanding JVM specification 1: introduction to JVM;
2022-07-05 23:11:00 【Small withered forest】
explain :
(1)JVM brief introduction , know JVM;
Catalog
3. Virtual machine is “Java Platform independence ” The protection of ;
1.JVM summary ;
(1) Virtual machine can be regarded as a computer system , But it is simulated by software ;
(2) On a real physical machine , Mainly from CPU Execute instruction set ;;; stay JVM in , Simulate instruction set through software ;
……………………………………………………
(1) The right part : We wrote java Source code (.java file ), And then through java compiler ( Such as javac Wait for the order , Or by IDEA Tools such as ) Compile it into java Bytecode (.class file );
● This process is the development process ;
(2) The left part : When we compile into .class After the document , This Java Platform runtime environment ( namely JVM) Through the class loader (Class Loader), Put the bytecode file (.class file ) Load into the virtual machine ;
● natural , When loading , Will verify and authenticate bytecode files ( such as , Verify whether it conforms to the virtual machine specification 、 Whether the format is correct );
● When loading bytecode files , Also mount java Class library ( It refers to some basic things that must be provided by the virtual organism 、 Necessary support , such as : Basic data types 、if-else and for Treatment of circulation 、 Basic java Safe handling ,JNI With some hardware processing and so on );
(3) The middle part on the left : When we finish loading , The virtual machine will give these to Java Interpreter ;
● Java The interpreter will interpret the bytecode and execute ; It will also involve just in time compilers (JIT);
● The runtime is much more complex than shown in this figure ;;; The running environment must first allocate memory , And then execute .class Bytecode ( You will use the bytecode execution engine ), Garbage collection is also needed , Consider concurrent processing , Safety treatment ;
(4) Lower left : If you need to interact with hardware or operating system ( Such as through JNI Interact with the outside world ), The virtual machine will come out ; namely java Programs interact with virtual machines 、 Virtual machines interact with operating systems 、 Then interact with the hardware through the operating system ;
2.JVM The main function ;
3. Virtual machine is “Java Platform independence ” The protection of ;
(1) stay Windows On the system 、Linux On different systems, such as the system ,Java Virtual machines are different ;
(2) The same program we developed , Compile it into .class After the document ;
● Throw it into Linux On the system , There is Linux Version of JVM To run ;;; Throw it into Windows On the system , There is Windows Version of JVM To run ;
● Look at it like this , Actually Java It's not really platform independent ; It's just that different virtual machines on different platforms have shielded us ;
边栏推荐
- Use of metadata in golang grpc
- 查看网页最后修改时间方法以及原理简介
- Selenium+pytest automated test framework practice
- audiopolicy
- Hcip day 12 (BGP black hole, anti ring, configuration)
- One article deals with the microstructure and instructions of class
- VOT Toolkit环境配置与使用
- Nacos 的安装与服务的注册
- Finally understand what dynamic planning is
- 2022.02.13 - SX10-30. Home raiding II
猜你喜欢

LeetCode102. Sequence traversal of binary tree (output by layer and unified output)

利用LNMP实现wordpress站点搭建

如何快速理解复杂业务,系统思考问题?

Use of grpc interceptor

Three. Js-01 getting started

Expectation, variance and covariance

2022 G3 boiler water treatment simulation examination and G3 boiler water treatment simulation examination question bank

并查集实践

Getting started stm32--gpio (running lantern) (nanny level)

How to quickly understand complex businesses and systematically think about problems?
随机推荐
判斷二叉樹是否為完全二叉樹
The difference between MVVM and MVC
Arduino measures AC current
Thoroughly understand JVM class loading subsystem
npm ELECTRON_ Mirror is set as domestic source (npmmirror China mirror)
2022 registration examination for safety management personnel of hazardous chemical business units and simulated reexamination examination for safety management personnel of hazardous chemical busines
MoCo: Momentum Contrast for Unsupervised Visual Representation Learning
基于STM32的ADC采样序列频谱分析
两数之和、三数之和(排序+双指针)
VOT Toolkit环境配置与使用
Openresty ngx Lua regular expression
February 13, 2022 -5- maximum depth of binary tree
[digital signal denoising] improved wavelet modulus maxima digital signal denoising based on MATLAB [including Matlab source code 1710]
Global and Chinese markets of tantalum heat exchangers 2022-2028: Research Report on technology, participants, trends, market size and share
Nail error code Encyclopedia
并查集实践
Finally understand what dynamic planning is
Getting started stm32--gpio (running lantern) (nanny level)
Global and Chinese market of diesel fire pump 2022-2028: Research Report on technology, participants, trends, market size and share
C Primer Plus Chapter 9 question 10 binary conversion



