2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 14:28:05 +02:00

Added chapter about java bytecode

This commit is contained in:
Martin Thoma 2014-03-10 16:18:58 +01:00
parent 7e76256e4e
commit 926bf6a386
4 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
%!TEX root = Programmierparadigmen.tex
\chapter{Java Bytecode}
\index{Java Bytecode|(}
\begin{definition}[Bytecode]\xindex{Bytecode}%
Der Bytecode ist eine Sammlung von Befehlen für eine virtuelle Maschine.
\end{definition}
Bytecode ist unabhängig von realer Hardware.
\begin{definition}[Heap]\xindex{Heap}\xindex{Speicher!dynamischer}%
Der dynamische Speicher, auch Heap genannt, ist ein Speicherbereich, aus dem
zur Laufzeit eines Programms zusammenhängende Speicherabschnitte angefordert
und in beliebiger Reihenfolge wieder freigegeben werden können.
\end{definition}
\index{Java Bytecode|)}

View file

@ -106,6 +106,7 @@
\input{C} \input{C}
\input{MPI} \input{MPI}
\input{Compilerbau} \input{Compilerbau}
\input{Java-Bytecode}
\appendix \appendix
\input{Bildquellen} \input{Bildquellen}

View file

@ -1,3 +1,4 @@
%!TEX root = Programmierparadigmen.tex
\chapter{Scala} \chapter{Scala}
\index{Scala|(} \index{Scala|(}