javax.script

Class CompiledScript


  • public abstract class CompiledScript
    extends Object
    Extended by classes that store results of compilations. State might be stored in the form of Java classes, Java class files or scripting language opcodes. The script may be executed repeatedly without reparsing.

    Each CompiledScript is associated with a ScriptEngine -- A call to an eval method of the CompiledScript causes the execution of the script by the ScriptEngine. Changes in the state of the ScriptEngine caused by execution of tne CompiledScript may visible during subsequent executions of scripts by the engine.
    Since:
    1.6
    • Constructor Detail

      • CompiledScript

        public CompiledScript()
    • Method Detail

      • eval

        public abstract Object eval(ScriptContext context)
                             throws ScriptException
        Executes the program stored in this CompiledScript object.
        Parameters:
        context - A ScriptContext that is used in the same way as the ScriptContext passed to the eval methods of ScriptEngine.
        Returns:
        The value returned by the script execution, if any. Should return null if no value is returned by the script execution.
        Throws:
        ScriptException - if an error occurs.
        NullPointerException - if context is null.
      • eval

        public Object eval(Bindings bindings)
                    throws ScriptException
        Executes the program stored in the CompiledScript object using the supplied Bindings of attributes as the ENGINE_SCOPE of the associated ScriptEngine during script execution. If bindings is null, then the effect of calling this method is same as that of eval(getEngine().getContext()).

        . The GLOBAL_SCOPE Bindings, Reader and Writer associated with the default ScriptContext of the associated ScriptEngine are used.

        Parameters:
        bindings - The bindings of attributes used for the ENGINE_SCOPE.
        Returns:
        The return value from the script execution
        Throws:
        ScriptException - if an error occurs.
      • eval

        public Object eval()
                    throws ScriptException
        Executes the program stored in the CompiledScript object. The default ScriptContext of the associated ScriptEngine is used. The effect of calling this method is same as that of eval(getEngine().getContext()).
        Returns:
        The return value from the script execution
        Throws:
        ScriptException - if an error occurs.
      • getEngine

        public abstract ScriptEngine getEngine()
        Returns the ScriptEngine whose compile method created this CompiledScript. The CompiledScript will execute in this engine.
        Returns:
        The ScriptEngine that created this CompiledScript

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/script/compiledscript.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut