|
|
|
|
@ -13,7 +13,7 @@ Java::
@@ -13,7 +13,7 @@ Java::
|
|
|
|
|
int[] numbers1 = (int[]) parser.parseExpression("new int[4]").getValue(context); |
|
|
|
|
|
|
|
|
|
// Array with initializer |
|
|
|
|
int[] numbers2 = (int[]) parser.parseExpression("new int[]{1,2,3}").getValue(context); |
|
|
|
|
int[] numbers2 = (int[]) parser.parseExpression("new int[] {1, 2, 3}").getValue(context); |
|
|
|
|
|
|
|
|
|
// Multi dimensional array |
|
|
|
|
int[][] numbers3 = (int[][]) parser.parseExpression("new int[4][5]").getValue(context); |
|
|
|
|
@ -26,14 +26,22 @@ Kotlin::
@@ -26,14 +26,22 @@ Kotlin::
|
|
|
|
|
val numbers1 = parser.parseExpression("new int[4]").getValue(context) as IntArray |
|
|
|
|
|
|
|
|
|
// Array with initializer |
|
|
|
|
val numbers2 = parser.parseExpression("new int[]{1,2,3}").getValue(context) as IntArray |
|
|
|
|
val numbers2 = parser.parseExpression("new int[] {1, 2, 3}").getValue(context) as IntArray |
|
|
|
|
|
|
|
|
|
// Multi dimensional array |
|
|
|
|
val numbers3 = parser.parseExpression("new int[4][5]").getValue(context) as Array<IntArray> |
|
|
|
|
---- |
|
|
|
|
====== |
|
|
|
|
|
|
|
|
|
[NOTE] |
|
|
|
|
==== |
|
|
|
|
You cannot currently supply an initializer when you construct a multi-dimensional array. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
==== |
|
|
|
|
|
|
|
|
|
[CAUTION] |
|
|
|
|
==== |
|
|
|
|
Any expression that constructs an array – for example, via `new int[4]` or |
|
|
|
|
`new int[] {1, 2, 3}` – cannot be compiled. See |
|
|
|
|
xref:core/expressions/evaluation.adoc#expressions-compiler-limitations[Compiler Limitations] |
|
|
|
|
for details. |
|
|
|
|
==== |
|
|
|
|
|