当前位置:网站首页>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 ;
边栏推荐
- Three. JS VR house viewing
- Realize reverse proxy client IP transparent transmission
- Metasploit(msf)利用ms17_010(永恒之蓝)出现Encoding::UndefinedConversionError问题
- 第十七周作业
- Yiwen gets rid of the garbage collector
- Alibaba Tianchi SQL training camp task4 learning notes
- 2022.02.13 - SX10-30. Home raiding II
- Error when LabVIEW opens Ni instance finder
- Element positioning of Web Automation
- Global and Chinese markets of tantalum heat exchangers 2022-2028: Research Report on technology, participants, trends, market size and share
猜你喜欢

Use of metadata in golang grpc

2022 R2 mobile pressure vessel filling review simulation examination and R2 mobile pressure vessel filling examination questions

Data type, variable declaration, global variable and i/o mapping of PLC programming basis (CoDeSys)

一文搞定垃圾回收器

Matlab smooth curve connection scatter diagram

SPSS analysis of employment problems of college graduates

终于搞懂什么是动态规划的

How to quickly understand complex businesses and systematically think about problems?
![[untitled]](/img/8c/607776e79d66acf9282dca127e12e1.jpg)
[untitled]

两数之和、三数之和(排序+双指针)
随机推荐
Metasploit(msf)利用ms17_010(永恒之蓝)出现Encoding::UndefinedConversionError问题
How to quickly understand complex businesses and systematically think about problems?
Nacos 的安装与服务的注册
Week 17 homework
Krypton Factor-紫书第七章暴力求解
Dynamic memory management (malloc/calloc/realloc)
关于MySQL的30条优化技巧,超实用
Codeforces Global Round 19
Three.js-01 入门
openresty ngx_lua正則錶達式
Roman numeral to integer
2.13 summary
audiopolicy
媒体查询:引入资源
d3dx9_ What if 29.dll is missing? System missing d3dx9_ Solution of 29.dll file
终于搞懂什么是动态规划的
openresty ngx_lua正则表达式
Global and Chinese markets for welding products 2022-2028: Research Report on technology, participants, trends, market size and share
Global and Chinese market of water treatment technology 2022-2028: Research Report on technology, participants, trends, market size and share
Shell: operator



