Array

Why Trust Techopedia

What Does Array Mean?

An array, in the context of Java, is a dynamically-created object that serves as a container to hold constant number of values of the same type. By declaring an array, memory space is allocated for values of a particular type. At the time of creation, the length of the array must be specified and remains constant.

Advertisements

To access an array element, the numerical index (a non-negative value) corresponding to the location of that element must be used. The first index value in the array is zero, thus, the index with value four is used to access the fifth element in the array. An array element that is also an array is known as a subarray. Arrays could have one or two dimensions.

Techopedia Explains Array

Arrays have the following advantages:

  • A particular element in a large group of elements may be accessed easily with the array name and the element index.
  • Arrays are useful when executing calculations within a loop.

The declaration and allocation of memory for a one-dimensional array in Java is as follows:
data_type[] array_name = new data_type[length of the array], where data_type is the type of values to be added to the array and array_name is the name assigned to the array.

For example, if we want to create an array named box that includes three elements of type integer, then the following is the Java syntax to define such array: int[] box = new int[3]. To access the first element in this array, the Java syntax used is box[0].

Advertisements

Related Terms

Margaret Rouse
Technology expert
Margaret Rouse
Technology expert

Margaret is an award-winning writer and educator known for her ability to explain complex technical topics to a non-technical business audience. Over the past twenty years, her IT definitions have been published by Que in an encyclopedia of technology terms and cited in articles in the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine, and Discovery Magazine. She joined Techopedia in 2011. Margaret’s idea of ​​a fun day is to help IT and business professionals to learn to speak each other’s highly specialized languages.