0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

中間コード方式について簡単に

Posted at

概要

  • コンパイラ方式とインタープリタ方式の中間的な方法
  • 言語特有の環境用機械語にコンパイルし、実行時に逐次実行か機械語に翻訳後実行される
  • Java、Pythonで採用

この方式の特徴と利点

  • コンパイラ方式には及ばないが、インタープリタ方式よりは早い
  • 一度中間コードにコンパイルするとwindowsでもmacでも動く

なぜ同じ方式のJavaとPythonで実行速度に差があるのか

  • Javaは静的型付け、Pythonは動的型付けであるので型チェックの時間で差が生まれる
  • JavaはJITコンパイラでネイティブコードに変換されるがPythonは逐次解釈するから
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?