ja die wird soviel ich weiss grad installiert
btw: hab glaub gefunden was es ist:
ZitatWhat is the "mixed mode" execution in java? What are other modes of execution?
The modes of execution are "compiled" and "interpreted". Modern JVMs mix both by selectively compiling to machine code only those parts of the bytecode that are executed most often (and applying special runtime optimizations). This avoids the compilation overhead for those parts of the code where it would yield no benefits.
also auf gut deutsch: "mixed mode" klingt komisch, ist aber normal und gut...