src/overview.html

Thu, 05 Sep 2019 18:59:46 +0800

author
aoqi
date
Thu, 05 Sep 2019 18:59:46 +0800
changeset 2493
2093c4a7abf0
parent 952
6d5471a497fb
permissions
-rw-r--r--

Merge

aoqi@0 1 <!--
aoqi@0 2 Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4
aoqi@0 5 This code is free software; you can redistribute it and/or modify it
aoqi@0 6 under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 published by the Free Software Foundation. Oracle designates this
aoqi@0 8 particular file as subject to the "Classpath" exception as provided
aoqi@0 9 by Oracle in the LICENSE file that accompanied this code.
aoqi@0 10
aoqi@0 11 This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 14 version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 15 accompanied this code).
aoqi@0 16
aoqi@0 17 You should have received a copy of the GNU General Public License version
aoqi@0 18 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 19 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 20
aoqi@0 21 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 22 or visit www.oracle.com if you need additional information or have any
aoqi@0 23 questions.
aoqi@0 24 -->
aoqi@0 25 <body>
aoqi@0 26 <p>
aoqi@0 27 Nashorn is a runtime environment for programs written in ECMAScript 5.1.
aoqi@0 28 </p>
aoqi@0 29 <h1>Usage</h1>
aoqi@0 30 <p>
aoqi@0 31 The recommended way to use Nashorn is through the <a href="http://jcp.org/en/jsr/detail?id=223" target="_top">JSR-223
aoqi@0 32 "Scripting for the Java Platform"</a> APIs found in the {@link javax.script} package. Usually, you'll obtain a
aoqi@0 33 {@link javax.script.ScriptEngine} instance for Nashorn using:
aoqi@0 34 <pre>
aoqi@0 35 import javax.script.*;
aoqi@0 36 ...
aoqi@0 37 ScriptEngine nashornEngine = new ScriptEngineManager().getEngineByName("nashorn");
aoqi@0 38 </pre>
aoqi@0 39 and then use it just as you would any other JSR-223 script engine. See
aoqi@0 40 <a href="jdk/nashorn/api/scripting/package-summary.html">{@code jdk.nashorn.api.scripting}</a> package
aoqi@0 41 for details.
aoqi@0 42 <p>
aoqi@0 43 <h1>Compatibility</h1>
aoqi@0 44 Nashorn is 100% compliant with the <a href="http://www.ecma-international.org/publications/standards/Ecma-262.htm"
aoqi@0 45 target="_top">ECMA-262 Standard, Edition 5.1</a>. It requires a Java Virtual Machine that implements the
aoqi@0 46 <a href="http://jcp.org/en/jsr/detail?id=292" target="_top">JSR-292 "Supporting Dynamically Typed Languages on the Java
aoqi@0 47 Platform"</a> specification (often referred to as "invokedynamic"), as well as the already mentioned JSR-223.
aoqi@0 48 <h1>Interoperability with the Java platform</h1>
aoqi@0 49 <p>
aoqi@0 50 In addition to being a 100% ECMAScript 5.1 runtime, Nashorn provides features for interoperability of the ECMAScript
aoqi@0 51 programs with the Java platform. In general, any Java object put into the script engine's context will be visible from
aoqi@0 52 the script. In terms of the standard, such Java objects are not considered "native objects", but rather "host objects",
aoqi@0 53 as defined in section 4.3.8. This distinction allows certain semantical differences in handling them compared to native
aoqi@0 54 objects. For most purposes, Java objects behave just as native objects do: you can invoke their methods, get and set
aoqi@0 55 their properties. In most cases, though, you can't add arbitrary properties to them, nor can you remove existing
aoqi@0 56 properties.
aoqi@0 57 <p>
aoqi@0 58 <h2>Java collection handling</h2>
aoqi@0 59 <p>
aoqi@0 60 Native Java arrays and {@link java.util.List}s support indexed access to their elements through the property accessors,
aoqi@0 61 and {@link java.util.Map}s support both property and element access through both dot and square-bracket property
aoqi@0 62 accessors, with the difference being that dot operator gives precedence to object properties (its fields and properties
aoqi@0 63 defined as {@code getXxx} and {@code setXxx} methods) while the square bracket operator gives precedence to map
aoqi@0 64 elements. Native Java arrays expose the {@code length} property.
aoqi@0 65 <p>
aoqi@0 66 <h2>ECMAScript primitive types</h2>
aoqi@0 67 <p>
aoqi@0 68 ECMAScript primitive types for number, string, and boolean are represented with {@link java.lang.Number},
aoqi@0 69 {@link java.lang.CharSequence}, and {@link java.lang.Boolean} objects. While the most often used number type is
aoqi@0 70 {@link java.lang.Double} and the most often used string type is {@link java.lang.String}, don't rely on it as various
aoqi@0 71 internal optimizations cause other subclasses of {@code Number} and internal implementations of {@code CharSequence} to
aoqi@0 72 be used.
aoqi@0 73 <p>
aoqi@0 74 <h2>Type conversions</h2>
aoqi@0 75 <p>
aoqi@0 76 When a method on a Java object is invoked, the arguments are converted to the formal parameter types of the Java method
aoqi@0 77 using all allowed ECMAScript conversions. This can be surprising, as in general, conversions from string to number will
aoqi@0 78 succeed according to Standard's section 9.3 "ToNumber" and so on; string to boolean, number to boolean, Object to
aoqi@0 79 number, Object to string all work. Note that if the Java method's declared parameter type is {@code java.lang.Object},
aoqi@0 80 Nashorn objects are passed without any conversion whatsoever; specifically if the JavaScript value being passed is of
aoqi@0 81 primitive string type, you can only rely on it being a {@code java.lang.CharSequence}, and if the value is a number, you
aoqi@0 82 can only rely on it being a {@code java.lang.Number}. If the Java method declared parameter type is more specific (e.g.
aoqi@0 83 {@code java.lang.String} or {@code java.lang.Double}), then Nashorn will of course ensure the required type is passed.
aoqi@0 84 <p>
aoqi@0 85 <h2>SAM types</h2>
aoqi@0 86 <p>
aoqi@0 87 As a special extension when invoking Java methods, ECMAScript function objects can be passed in place of an argument
aoqi@0 88 whose Java type is so-called "single abstract method" or "SAM" type. While this name usually covers single-method
aoqi@0 89 interfaces, Nashorn is a bit more versatile, and it recognizes a type as a SAM type if all its abstract methods are
aoqi@0 90 overloads of the same name, and it is either an interface, or it is an abstract class with
aoqi@0 91 a no-arg constructor. The type itself must be public, while the constructor and the methods can be either public or
aoqi@0 92 protected. If there are multiple abstract overloads of the same name, the single function will serve as the shared
aoqi@0 93 implementation for all of them, <em>and additionally it will also override any non-abstract methods of the same name</em>.
aoqi@0 94 This is done to be consistent with the fact that ECMAScript does not have the concept of overloaded methods.
aoqi@0 95 <p>
aoqi@0 96 <h2>The {@code Java} object</h2>
aoqi@0 97 Nashorn exposes a non-standard global object named {@code Java} that is the primary API entry point into Java
aoqi@0 98 platform-specific functionality. You can use it to create instances of Java classes, convert from Java arrays to native
aoqi@0 99 arrays and back, and so on. The methods on the objects are directly implemented by public static methods on the class
aoqi@0 100 <a href="jdk/nashorn/internal/objects/NativeJava.html">{@code NativeJava}</a>, see that class for details on what
aoqi@0 101 functionality is available.
aoqi@0 102 <h2>Representations of Java types</h2>
aoqi@0 103 The method <a href="jdk/nashorn/internal/objects/NativeJava.html#type(java.lang.Object,%20java.lang.Object)">
aoqi@0 104 {@code Java.type(typeName)}</a> takes a name of a type, and returns an object representing a Java type. You can
aoqi@0 105 use that object to both create new instances of Java classes, as well as to access static fields and methods on them.
aoqi@0 106 The type object is distinct from the {@code java.lang.Class} object, which represents the reflective run-time type
aoqi@0 107 identity and doesn't carry i.e. static members. Again, see the link for {@code NativeJava} above for details.
aoqi@0 108 <h2>Other non-standard built-in objects</h2>
aoqi@0 109 In addition to {@code Java}, Nashorn also exposes some other non-standard built-in objects:
aoqi@0 110 <a href="jdk/nashorn/internal/objects/NativeJSAdapter.html">{@code JSAdapter}</a>,
aoqi@0 111 <a href="jdk/nashorn/internal/objects/NativeJavaImporter.html">{@code JavaImporter}</a>,
aoqi@0 112 <a href="jdk/nashorn/internal/runtime/NativeJavaPackage.html">{@code Packages}.</a>
aoqi@0 113 </body>

mercurial