Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Algorithm
- control
- computer
- php
- for
- function
- javascript
- Pipelining
- react
- XML
- html
- DB
- DoM
- MIPS
- architecture
- MacOS
- Class
- data structure
- instruction
- system
- mysql
- web
- while
- Linux
- python
- DATAPATH
- DS
- github
- CSS
- Java
Archives
- Today
- Total
YYYEJI
[JAVA] 자바 가상 머신, JVM(Java virtual machine) 본문
728x90
자바 가상 머신은
자바 프로그램 실행환경을 만들어 주는 소프트웨어입니다.
Compiler와 Interpreter가 둘 다 존재합니다.
Java code를 컴파일하면 byte code로 된 .class 파일이 생성됩니다.
이 byte code의 파일이 JVM에서 machine code로 변환됩니다.
순서는 !
Java compiler
↓
Byte-code program
↓
Byte-code interpreter
↓
Machine-language instructions
↓
Computer Exceution of Machine-language Instruction
◡̈
'Java' 카테고리의 다른 글
[OOP] Encapsulation, Polymorphism, Inheritance (0) | 2022.10.21 |
---|---|
[JAVA] 객체 지향 프로그래밍, OOP(Object Oriented Programming) (0) | 2022.10.17 |
[JAVA] Assembler와 Interpreter의 차이점 (0) | 2022.10.17 |
[JAVA] High level code와 Machine code의 차이점 (0) | 2022.10.17 |
[JAVA] Bottleneck(보틀넥) 현상 (0) | 2022.10.17 |