Java

[JAVA] Assembler와 Interpreter의 차이점

YEJI ⍢ 2022. 10. 17. 17:15
728x90

Assembler와 interpreter의 공통점은 machine code로 바꿔준다는 점입니다.

 

차이점을 알아봅시다.

Compiler & Assembler

✓ 코드의 번역이 끝나고 수행하게 됩니다.

프로그램 실행 시간이 아닌 off-line일 때 실행됩니다.

 

Interpreter

 번역과 수행을 반복합니다.

 속도가 느립니다.

프로그램 실행 도중인 on-line일 때 실행됩니다.

 

 

 

Source code Compiler or Assembler or interpreter → Object Code

 

 

 

◡̈