Hallo frank_eee,
ich beschaeftige mich seit gestern mit der Frage (siehe Ueberschrift) und bin noch zu keinem schluessigen Ergebnis gekommen. Wird JavaScript bzw. JScript nun interpretiert oder compiliert?
Ich hatte deine Frage Gestern Abend schon gelesen, aber wusste im Moment. Keine Antwort drauf. Ist mir gerade beim Fruehstueck eingefallen, du meinst Java, nicht JavaScript.
Java wird sowohl Compiliert als auch Interpretiert. Da ich selber nicht viel über das Programmieren mit Java weiss, zitiere ich mal die Stelle aus Sun's Tutorial.
About the Java Technology
With most programming languages, you either compile or interpret
a program so that you can run it on your computer. The Java
programming language is unusual in that a program is both
compiled and interpreted. With the compiler, first you translate
a program into an intermediate language called Java bytecodes
-the platform-independent codes interpreted by the interpreter on
the Java platform. The interpreter parses and runs each Java
bytecode instruction on the computer. Compilation happens just
once; interpretation occurs each time the program is executed.
http://java.sun.com/docs/books/tutorial/getStarted/intro/definition.html
HTH und schoenen Sonntag noch
jens mueller