linux.txt/programmieren/java/funktion_von_java.tex
2025-02-15 15:39:11 +01:00

20 lines
1 KiB
TeX

% master: funktion_von_java.tex
% Funktion von Java v0.1
% 2011-06-08 (Rx)
\begin{verbatim}
+---------------+ +--------------------------+ +---------------------+
| Programm Code |->| Java Compiler (java.exe) |->| Bytecode (01010011) |
+---------------+ +--------------------------+ +---------------------+
| |
V V
+--------------+ +--------------+
| Ineterpreter | | Browser/ |
| (java.exe) | | Appletviewer |
+--------------+ +--------------+
javac.exe progammcode.java -> programmcode.class Programm compilieren
java.exe programmcode Programm ausführen
appletviewer.exe Applets ausführen
\end{verbatim}