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 |
29 | 30 |
Tags
- javascript
- computer
- Java
- while
- CSS
- MIPS
- python
- DS
- system
- architecture
- php
- github
- web
- DB
- DATAPATH
- Class
- data structure
- MacOS
- instruction
- Linux
- DoM
- Algorithm
- XML
- for
- Pipelining
- function
- control
- mysql
- html
- react
Archives
- Today
- Total
YYYEJI
[JAVA] Assembler와 Interpreter의 차이점 본문
728x90
Assembler와 interpreter의 공통점은 machine code로 바꿔준다는 점입니다.
차이점을 알아봅시다.
Compiler & Assembler
✓ 코드의 번역이 끝나고 수행하게 됩니다.
✓ 프로그램 실행 시간이 아닌 off-line일 때 실행됩니다.
Interpreter
✓ 번역과 수행을 반복합니다.
✓ 속도가 느립니다.
✓ 프로그램 실행 도중인 on-line일 때 실행됩니다.
Source code → Compiler or Assembler or interpreter → Object Code
◡̈
'Java' 카테고리의 다른 글
[JAVA] 객체 지향 프로그래밍, OOP(Object Oriented Programming) (0) | 2022.10.17 |
---|---|
[JAVA] 자바 가상 머신, JVM(Java virtual machine) (0) | 2022.10.17 |
[JAVA] High level code와 Machine code의 차이점 (0) | 2022.10.17 |
[JAVA] Bottleneck(보틀넥) 현상 (0) | 2022.10.17 |
[Java] Computers and Java (0) | 2022.10.17 |