From 11968cf6e7baa1ee4e527af06140d58831d59651 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20=C4=B0kan=20Y=C4=B1ld=C4=B1z?= Date: Mon, 21 Jan 2019 18:18:33 +0300 Subject: [PATCH] Jagged Arrays extra information added (#27115) --- guide/english/java/arrays/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/java/arrays/index.md b/guide/english/java/arrays/index.md index 58a217be7a..ce199b1654 100644 --- a/guide/english/java/arrays/index.md +++ b/guide/english/java/arrays/index.md @@ -164,7 +164,7 @@ In a similar manner, one can declare an array of as many dimensions as desired, Tip: Arrays like this can be quite confusing, especially to beginners, so if you are planning to use this, be prepared to make a visual representation either in your head or on pen and paper. ### Jagged Arrays -Jagged arrays are multi-dimensional arrays that have a set number of rows but a varying number of columns. Jagged arrays are used to conserve memory use of the array. Here is an example: +Jagged arrays are multi-dimensional arrays that have a set number of rows but a varying number of columns. Jagged arrays are used to conserve memory use of the array. They can be thought of as arrays which holds arrays. Here is an example: ```java int[][] array = new int[5][]; //initialize a 2D array with 5 rows