2018-04-17 15:16:08 -04:00
|
|
|
[[painless-types]]
|
|
|
|
=== Types
|
2017-05-12 19:17:06 -04:00
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
A type is a classification of data used to define the properties of a value.
|
|
|
|
These properties specify what data a value represents and the rules for how a
|
|
|
|
value is evaluated during an <<painless-operators, operation>>. Each type
|
|
|
|
belongs to one of the following categories: <<primitive-types, primitive>>,
|
|
|
|
<<reference-types, reference>>, or <<dynamic-types, dynamic>>.
|
2017-05-12 19:17:06 -04:00
|
|
|
|
|
|
|
[[primitive-types]]
|
|
|
|
==== Primitive Types
|
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
A primitive type represents basic data built natively into the JVM and is
|
|
|
|
allocated to non-heap memory. Declare a primitive type
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
<<painless-variables, variable>> or access a primitive type member field (from
|
|
|
|
a reference type instance), and assign it a primitive type value for evaluation
|
|
|
|
during later operations. The default value for a newly-declared primitive type
|
|
|
|
variable is listed as part of the definitions below. A primitive type value is
|
|
|
|
copied during an assignment or as an argument for a method/function call.
|
2018-05-23 16:36:58 -04:00
|
|
|
|
|
|
|
A primitive type has a corresponding reference type (also known as a boxed
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
type). Use the <<field-access-operator, field access operator>> or
|
|
|
|
<<method-call-operator, method call operator>> on a primitive type value to
|
|
|
|
force evaluation as its corresponding reference type value.
|
2018-05-23 16:36:58 -04:00
|
|
|
|
|
|
|
The following primitive types are available:
|
|
|
|
|
|
|
|
[horizontal]
|
|
|
|
`byte`::
|
|
|
|
8-bit, signed, two's complement integer
|
|
|
|
* range: [`-128`, `127`]
|
|
|
|
* default value: `0`
|
|
|
|
* reference type: `Byte`
|
|
|
|
|
|
|
|
`short`::
|
|
|
|
16-bit, signed, two's complement integer
|
|
|
|
* range: [`-32768`, `32767`]
|
|
|
|
* default value: `0`
|
|
|
|
* reference type: `Short`
|
|
|
|
|
|
|
|
`char`::
|
|
|
|
16-bit, unsigned, Unicode character
|
|
|
|
* range: [`0`, `65535`]
|
|
|
|
* default value: `0` or `\u0000`
|
|
|
|
* reference type: `Character`
|
|
|
|
|
|
|
|
`int`::
|
|
|
|
32-bit, signed, two's complement integer
|
|
|
|
* range: [`-2^32`, `2^32-1`]
|
|
|
|
* default value: `0`
|
|
|
|
* reference type: `Integer`
|
|
|
|
|
|
|
|
`long`::
|
|
|
|
64-bit, signed, two's complement integer
|
|
|
|
* range: [`-2^64`, `2^64-1`]
|
|
|
|
* default value: `0`
|
|
|
|
* reference type: `Long`
|
|
|
|
|
|
|
|
`float`::
|
|
|
|
32-bit, signed, single-precision, IEEE 754 floating point number
|
|
|
|
* default value: `0.0`
|
|
|
|
* reference type: `Float`
|
|
|
|
|
|
|
|
`double`::
|
|
|
|
64-bit, signed, double-precision, IEEE 754 floating point number
|
|
|
|
* default value: `0.0`
|
|
|
|
* reference type: `Double`
|
|
|
|
|
|
|
|
`boolean`::
|
|
|
|
logical quantity with two possible values of `true` and `false`
|
|
|
|
* default value: `false`
|
|
|
|
* reference type: `Boolean`
|
|
|
|
|
|
|
|
*Examples*
|
|
|
|
|
|
|
|
* Primitive types used in declaration, declaration and assignment.
|
|
|
|
+
|
|
|
|
[source,Painless]
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
<1> int i = 1;
|
|
|
|
<2> double d;
|
|
|
|
<3> boolean b = true;
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
|
|
|
<1> declare `int i`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `int 1` to `i`
|
2018-05-23 16:36:58 -04:00
|
|
|
<2> declare `double d`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store default `double 0.0` to `d`
|
2018-05-23 16:36:58 -04:00
|
|
|
<3> declare `boolean b`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `boolean true` to `b`
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
|
|
|
* Method call on a primitive type using the corresponding reference type.
|
|
|
|
+
|
|
|
|
[source,Painless]
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
<1> int i = 1;
|
|
|
|
<2> i.toString();
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
|
|
|
<1> declare `int i`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `int 1` to `i`
|
|
|
|
<2> load from `i` -> `int 1`;
|
2018-05-23 16:36:58 -04:00
|
|
|
box `int 1` -> `Integer 1 reference`;
|
|
|
|
call `toString` on `Integer 1 reference` -> `String '1'`
|
2017-05-12 19:17:06 -04:00
|
|
|
|
|
|
|
[[reference-types]]
|
|
|
|
==== Reference Types
|
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
A reference type is a named construct (object), potentially representing
|
|
|
|
multiple pieces of data (member fields) and logic to manipulate that data
|
|
|
|
(member methods), defined as part of the application programming interface
|
|
|
|
(API) for scripts.
|
|
|
|
|
|
|
|
A reference type instance is a single set of data for one reference type
|
|
|
|
object allocated to the heap. Use the
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
<<new-instance-operator, new instance operator>> to allocate a reference type
|
2018-05-23 16:36:58 -04:00
|
|
|
instance. Use a reference type instance to load from, store to, and manipulate
|
|
|
|
complex data.
|
|
|
|
|
|
|
|
A reference type value refers to a reference type instance, and multiple
|
|
|
|
reference type values may refer to the same reference type instance. A change to
|
|
|
|
a reference type instance will affect all reference type values referring to
|
|
|
|
that specific instance.
|
|
|
|
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
Declare a reference type <<painless-variables, variable>> or access a reference
|
|
|
|
type member field (from a reference type instance), and assign it a reference
|
|
|
|
type value for evaluation during later operations. The default value for a
|
|
|
|
newly-declared reference type variable is `null`. A reference type value is
|
|
|
|
shallow-copied during an assignment or as an argument for a method/function
|
2018-05-23 16:36:58 -04:00
|
|
|
call. Assign `null` to a reference type variable to indicate the reference type
|
|
|
|
value refers to no reference type instance. The JVM will garbage collect a
|
|
|
|
reference type instance when it is no longer referred to by any reference type
|
|
|
|
values. Pass `null` as an argument to a method/function call to indicate the
|
|
|
|
argument refers to no reference type instance.
|
|
|
|
|
|
|
|
A reference type object defines zero-to-many of each of the following:
|
|
|
|
|
|
|
|
static member field::
|
|
|
|
|
|
|
|
A static member field is a named and typed piece of data. Each reference type
|
|
|
|
*object* contains one set of data representative of its static member fields.
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
Use the <<field-access-operator, field access operator>> in correspondence with
|
|
|
|
the reference type object name to access a static member field for loading and
|
2018-05-23 16:36:58 -04:00
|
|
|
storing to a specific reference type *object*. No reference type instance
|
|
|
|
allocation is necessary to use a static member field.
|
|
|
|
|
|
|
|
non-static member field::
|
|
|
|
|
|
|
|
A non-static member field is a named and typed piece of data. Each reference
|
|
|
|
type *instance* contains one set of data representative of its reference type
|
|
|
|
object's non-static member fields. Use the
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
<<field-access-operator, field access operator>> for loading and storing to a
|
|
|
|
non-static member field of a specific reference type *instance*. An allocated
|
|
|
|
reference type instance is required to use a non-static member field.
|
2018-05-23 16:36:58 -04:00
|
|
|
|
|
|
|
static member method::
|
|
|
|
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
A static member method is a <<painless-functions, function>> called on a
|
|
|
|
reference type *object*. Use the <<method-call-operator, method call operator>>
|
|
|
|
in correspondence with the reference type object name to call a static member
|
|
|
|
method. No reference type instance allocation is necessary to use a static
|
|
|
|
member method.
|
2018-05-23 16:36:58 -04:00
|
|
|
|
|
|
|
non-static member method::
|
|
|
|
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
A non-static member method is a <<painless-functions, function>> called on a
|
|
|
|
reference type *instance*. A non-static member method called on a reference type
|
|
|
|
instance can load from and store to non-static member fields of that specific
|
|
|
|
reference type instance. Use the <<method-call-operator, method call operator>>
|
|
|
|
in correspondence with a specific reference type instance to call a non-static
|
|
|
|
member method. An allocated reference type instance is required to use a
|
|
|
|
non-static member method.
|
2018-05-23 16:36:58 -04:00
|
|
|
|
|
|
|
constructor::
|
|
|
|
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
A constructor is a special type of <<painless-functions, function>> used to
|
|
|
|
allocate a reference type *instance* defined by a specific reference type
|
|
|
|
*object*. Use the <<new-instance-operator, new instance operator>> to allocate
|
|
|
|
a reference type instance.
|
2018-05-23 16:36:58 -04:00
|
|
|
|
|
|
|
A reference type object follows a basic inheritance model. Consider types A and
|
|
|
|
B. Type A is considered to be a parent of B, and B a child of A, if B inherits
|
|
|
|
(is able to access as its own) all of A's non-static members. Type B is
|
2017-05-12 19:17:06 -04:00
|
|
|
considered a descendant of A if there exists a recursive parent-child
|
|
|
|
relationship from B to A with none to many types in between. In this case, B
|
2018-05-23 16:36:58 -04:00
|
|
|
inherits all of A's non-static members along with all of the non-static members
|
|
|
|
of the types in between. Type B is also considered to be a type A in both
|
|
|
|
relationships.
|
2017-05-12 19:17:06 -04:00
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
*Examples*
|
2017-05-12 19:17:06 -04:00
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
* Reference types evaluated in several different operations.
|
|
|
|
+
|
|
|
|
[source,Painless]
|
|
|
|
----
|
|
|
|
<1> List l = new ArrayList();
|
|
|
|
<2> l.add(1);
|
|
|
|
<3> int i = l.get(0) + 2;
|
|
|
|
----
|
|
|
|
+
|
|
|
|
<1> declare `List l`;
|
|
|
|
allocate `ArrayList` instance -> `ArrayList reference`;
|
|
|
|
implicit cast `ArrayList reference` to `List reference` -> `List reference`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `List reference` to `l`
|
|
|
|
<2> load from `l` -> `List reference`;
|
2018-05-23 16:36:58 -04:00
|
|
|
implicit cast `int 1` to `def` -> `def`
|
|
|
|
call `add` on `List reference` with arguments (`def`)
|
|
|
|
<3> declare `int i`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
load from `l` -> `List reference`;
|
2018-05-23 16:36:58 -04:00
|
|
|
call `get` on `List reference` with arguments (`int 0`) -> `def`;
|
|
|
|
implicit cast `def` to `int 1` -> `int 1`;
|
|
|
|
add `int 1` and `int 2` -> `int 3`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `int 3` to `i`
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
|
|
|
* Sharing a reference type instance.
|
|
|
|
+
|
|
|
|
[source,Painless]
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
<1> List l0 = new ArrayList();
|
|
|
|
<2> List l1 = l0;
|
|
|
|
<3> l0.add(1);
|
|
|
|
<4> l1.add(2);
|
|
|
|
<5> int i = l1.get(0) + l0.get(1);
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
|
|
|
<1> declare `List l0`;
|
|
|
|
allocate `ArrayList` instance -> `ArrayList reference`;
|
|
|
|
implicit cast `ArrayList reference` to `List reference` -> `List reference`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `List reference` to `l0`
|
2018-05-23 16:36:58 -04:00
|
|
|
<2> declare `List l1`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
load from `l0` -> `List reference`;
|
|
|
|
store `List reference` to `l1`
|
2018-05-23 16:36:58 -04:00
|
|
|
(note `l0` and `l1` refer to the same instance known as a shallow-copy)
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
<3> load from `l0` -> `List reference`;
|
2018-05-23 16:36:58 -04:00
|
|
|
implicit cast `int 1` to `def` -> `def`
|
|
|
|
call `add` on `List reference` with arguments (`def`)
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
<4> load from `l1` -> `List reference`;
|
2018-05-23 16:36:58 -04:00
|
|
|
implicit cast `int 2` to `def` -> `def`
|
|
|
|
call `add` on `List reference` with arguments (`def`)
|
|
|
|
<5> declare `int i`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
load from `l0` -> `List reference`;
|
2018-05-23 16:36:58 -04:00
|
|
|
call `get` on `List reference` with arguments (`int 0`) -> `def @0`;
|
|
|
|
implicit cast `def @0` to `int 1` -> `int 1`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
load from `l1` -> `List reference`;
|
2018-05-23 16:36:58 -04:00
|
|
|
call `get` on `List reference` with arguments (`int 1`) -> `def @1`;
|
|
|
|
implicit cast `def @1` to `int 2` -> `int 2`;
|
|
|
|
add `int 1` and `int 2` -> `int 3`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `int 3` to `i`;
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
|
|
|
* Using the static members of a reference type.
|
|
|
|
+
|
|
|
|
[source,Painless]
|
|
|
|
----
|
|
|
|
<1> int i = Integer.MAX_VALUE;
|
|
|
|
<2> long l = Long.parseLong("123L");
|
|
|
|
----
|
|
|
|
+
|
|
|
|
<1> declare `int i`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
load from `MAX_VALUE` on `Integer` -> `int 2147483647`;
|
|
|
|
store `int 2147483647` to `i`
|
2018-05-23 16:36:58 -04:00
|
|
|
<2> declare `long l`;
|
|
|
|
call `parseLong` on `Long` with arguments (`long 123`) -> `long 123`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `long 123` to `l`
|
2018-05-23 16:36:58 -04:00
|
|
|
|
|
|
|
[[dynamic-types]]
|
|
|
|
==== Dynamic Types
|
|
|
|
|
|
|
|
A dynamic type value can represent the value of any primitive type or
|
|
|
|
reference type using a single type name `def`. A `def` type value mimics
|
|
|
|
the behavior of whatever value it represents at run-time and will always
|
|
|
|
represent the child-most descendant type value of any type value when evaluated
|
|
|
|
during operations.
|
|
|
|
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
Declare a `def` type <<painless-variables, variable>> or access a `def` type
|
|
|
|
member field (from a reference type instance), and assign it any type of value
|
|
|
|
for evaluation during later operations. The default value for a newly-declared
|
|
|
|
`def` type variable is `null`. A `def` type variable or method/function
|
|
|
|
parameter can change the type it represents during the compilation and
|
|
|
|
evaluation of a script.
|
2018-05-23 16:36:58 -04:00
|
|
|
|
|
|
|
Using the `def` type can have a slight impact on performance. Use only primitive
|
|
|
|
types and reference types directly when performance is critical.
|
|
|
|
|
|
|
|
*Errors*
|
2017-05-12 19:17:06 -04:00
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
* If a `def` type value represents an inappropriate type for evaluation of an
|
|
|
|
operation at run-time.
|
2017-05-12 19:17:06 -04:00
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
*Examples*
|
|
|
|
|
|
|
|
* General uses of the `def` type.
|
|
|
|
+
|
|
|
|
[source,Painless]
|
|
|
|
----
|
|
|
|
<1> def dp = 1;
|
|
|
|
<2> def dr = new ArrayList();
|
|
|
|
<3> dr = dp;
|
|
|
|
----
|
|
|
|
+
|
|
|
|
<1> declare `def dp`;
|
|
|
|
implicit cast `int 1` to `def` -> `def`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `def` to `dp`
|
2018-05-23 16:36:58 -04:00
|
|
|
<2> declare `def dr`;
|
|
|
|
allocate `ArrayList` instance -> `ArrayList reference`;
|
|
|
|
implicit cast `ArrayList reference` to `def` -> `def`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `def` to `dr`
|
|
|
|
<3> load from `dp` -> `def`;
|
|
|
|
store `def` to `dr`;
|
2018-05-23 16:36:58 -04:00
|
|
|
(note the switch in the type `dr` represents from `ArrayList` to `int`)
|
|
|
|
+
|
|
|
|
* A `def` type value representing the child-most descendant of a value.
|
|
|
|
+
|
|
|
|
[source,Painless]
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
<1> Object l = new ArrayList();
|
|
|
|
<2> def d = l;
|
|
|
|
<3> d.ensureCapacity(10);
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
|
|
|
<1> declare `Object l`;
|
|
|
|
allocate `ArrayList` instance -> `ArrayList reference`;
|
|
|
|
implicit cast `ArrayList reference` to `Object reference`
|
|
|
|
-> `Object reference`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `Object reference` to `l`
|
2018-05-23 16:36:58 -04:00
|
|
|
<2> declare `def d`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
load from `l` -> `Object reference`;
|
2018-05-23 16:36:58 -04:00
|
|
|
implicit cast `Object reference` to `def` -> `def`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `def` to `d`;
|
|
|
|
<3> load from `d` -> `def`;
|
2018-05-23 16:36:58 -04:00
|
|
|
implicit cast `def` to `ArrayList reference` -> `ArrayList reference`;
|
|
|
|
call `ensureCapacity` on `ArrayList reference` with arguments (`int 10`);
|
|
|
|
(note `def` was implicit cast to `ArrayList reference`
|
|
|
|
since ArrayList` is the child-most descendant type value that the
|
|
|
|
`def` type value represents)
|
2017-05-12 19:17:06 -04:00
|
|
|
|
|
|
|
[[string-type]]
|
|
|
|
==== String Type
|
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
The `String` type is a specialized reference type that does not require
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
explicit allocation. Use a <<string-literals, string literal>> to directly
|
|
|
|
evaluate a `String` type value. While not required, the
|
|
|
|
<<new-instance-operator, new instance operator>> can allocate `String` type
|
2018-05-23 16:36:58 -04:00
|
|
|
instances.
|
2017-05-12 19:17:06 -04:00
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
*Examples*
|
2017-05-12 19:17:06 -04:00
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
* General use of the `String` type.
|
|
|
|
+
|
|
|
|
[source,Painless]
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
<1> String r = "some text";
|
|
|
|
<2> String s = 'some text';
|
|
|
|
<3> String t = new String("some text");
|
|
|
|
<4> String u;
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
|
|
|
<1> declare `String r`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `String "some text"` to `r`
|
2018-05-23 16:36:58 -04:00
|
|
|
<2> declare `String s`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `String 'some text'` to `s`
|
2018-05-23 16:36:58 -04:00
|
|
|
<3> declare `String t`;
|
|
|
|
allocate `String` instance with arguments (`String "some text"`)
|
|
|
|
-> `String "some text"`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `String "some text"` to `t`
|
2018-05-23 16:36:58 -04:00
|
|
|
<4> declare `String u`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store default `null` to `u`
|
2017-05-12 19:17:06 -04:00
|
|
|
|
|
|
|
[[void-type]]
|
|
|
|
==== void Type
|
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
The `void` type represents the concept of a lack of type. Use the `void` type to
|
|
|
|
indicate a function returns no value.
|
2017-05-12 19:17:06 -04:00
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
*Examples*
|
2017-05-12 19:17:06 -04:00
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
* Use of the `void` type in a function.
|
|
|
|
+
|
|
|
|
[source,Painless]
|
|
|
|
----
|
|
|
|
void addToList(List l, def d) {
|
|
|
|
l.add(d);
|
|
|
|
}
|
|
|
|
----
|
2017-05-12 19:17:06 -04:00
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
[[array-type]]
|
|
|
|
==== Array Type
|
2017-05-12 19:17:06 -04:00
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
An array type is a specialized reference type where an array type instance
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
contains a series of values allocated to the heap. Each value in an array type
|
|
|
|
instance is defined as an element. All elements in an array type instance are of
|
|
|
|
the same type (element type) specified as part of declaration. Each element is
|
|
|
|
assigned an index within the range `[0, length)` where length is the total
|
|
|
|
number of elements allocated for an array type instance.
|
|
|
|
|
|
|
|
Use the <<new-array-operator, new array operator>> or the
|
|
|
|
<<array-initialization-operator, array initialization operator>> to allocate an
|
|
|
|
array type instance. Declare an array type <<painless-variables, variable>> or
|
|
|
|
access an array type member field (from a reference type instance), and assign
|
|
|
|
it an array type value for evaluation during later operations. The default value
|
|
|
|
for a newly-declared array type variable is `null`. An array type value is
|
|
|
|
shallow-copied during an assignment or as an argument for a method/function
|
|
|
|
call. Assign `null` to an array type variable to indicate the array type value
|
|
|
|
refers to no array type instance. The JVM will garbage collect an array type
|
|
|
|
instance when it is no longer referred to by any array type values. Pass `null`
|
|
|
|
as an argument to a method/function call to indicate the argument refers to no
|
|
|
|
array type instance.
|
|
|
|
|
|
|
|
Use the <<array-length-operator, array length operator>> to retrieve the length
|
|
|
|
of an array type value as an `int` type value. Use the
|
|
|
|
<<array-access-operator, array access operator>> to load from and store to
|
|
|
|
an individual element within an array type instance.
|
2018-05-23 16:36:58 -04:00
|
|
|
|
|
|
|
When an array type instance is allocated with multiple dimensions using the
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
range `[2, d]` where `d >= 2`, each element within each dimension in the range
|
|
|
|
`[1, d-1]` is also an array type. The element type of each dimension, `n`, is an
|
|
|
|
array type with the number of dimensions equal to `d-n`. For example, consider
|
|
|
|
`int[][][]` with 3 dimensions. Each element in the 3rd dimension, `d-3`, is the
|
|
|
|
primitive type `int`. Each element in the 2nd dimension, `d-2`, is the array
|
|
|
|
type `int[]`. And each element in the 1st dimension, `d-1` is the array type
|
|
|
|
`int[][]`.
|
2018-05-23 16:36:58 -04:00
|
|
|
|
|
|
|
*Examples*
|
|
|
|
|
|
|
|
* General use of single-dimensional arrays.
|
|
|
|
+
|
|
|
|
[source,Painless]
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
<1> int[] x;
|
|
|
|
<2> float[] y = new float[10];
|
|
|
|
<3> def z = new float[5];
|
|
|
|
<4> y[9] = 1.0F;
|
|
|
|
<5> z[0] = y[9];
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
|
|
|
<1> declare `int[] x`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store default `null` to `x`
|
2018-05-23 16:36:58 -04:00
|
|
|
<2> declare `float[] y`;
|
|
|
|
allocate `1-d float array` instance with `length [10]`
|
|
|
|
-> `1-d float array reference`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `1-d float array reference` to `y`
|
2018-05-23 16:36:58 -04:00
|
|
|
<3> declare `def z`;
|
|
|
|
allocate `1-d float array` instance with `length [5]`
|
|
|
|
-> `1-d float array reference`;
|
|
|
|
implicit cast `1-d float array reference` to `def` -> `def`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `def` to `z`
|
|
|
|
<4> load from `y` -> `1-d float array reference`;
|
|
|
|
store `float 1.0` to `index [9]` of `1-d float array reference`
|
|
|
|
<5> load from `y` -> `1-d float array reference @0`;
|
|
|
|
load from `index [9]` of `1-d float array reference @0` -> `float 1.0`;
|
|
|
|
load from `z` -> `def`;
|
2018-05-23 16:36:58 -04:00
|
|
|
implicit cast `def` to `1-d float array reference @1`
|
|
|
|
-> `1-d float array reference @1`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `float 1.0` to `index [0]` of `1-d float array reference @1`
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
* General use of a multi-dimensional array.
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
|
|
|
[source,Painless]
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
<1> int[][][] ia3 = new int[2][3][4];
|
|
|
|
<2> ia3[1][2][3] = 99;
|
|
|
|
<3> int i = ia3[1][2][3];
|
2017-05-12 19:17:06 -04:00
|
|
|
----
|
2018-05-23 16:36:58 -04:00
|
|
|
+
|
|
|
|
<1> declare `int[][][] ia`;
|
|
|
|
allocate `3-d int array` instance with length `[2, 3, 4]`
|
|
|
|
-> `3-d int array reference`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
store `3-d int array reference` to `ia3`
|
|
|
|
<2> load from `ia3` -> `3-d int array reference`;
|
|
|
|
store `int 99` to `index [1, 2, 3]` of `3-d int array reference`
|
2018-05-23 16:36:58 -04:00
|
|
|
<3> declare `int i`;
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
load from `ia3` -> `3-d int array reference`;
|
|
|
|
load from `index [1, 2, 3]` of `3-d int array reference` -> `int 99`;
|
|
|
|
store `int 99` to `i`
|