array declarion Archive
26 Sep 2014
Arrays in Java

Arrays are used to store collection of data. In other words, arrays are collection of variables stored under one name by manipulating indexes. Instead of declaring var1, var2, var3… you can declare one array var[0],var[1], var[2]… to represent indivisual variables. Single Dimension Array Declaring Array dataType arrayRefVar; or dataType arrayRefVar; int mylist; or int mylist; Creating