2224

How do I declare and initialize an array in Java?

Abhinav
  • 500
  • 8
  • 18
bestattendance
  • 23,477
  • 5
  • 23
  • 22

28 Answers28

2885

You can either use array declaration or array literal (but only when you declare and affect the variable right away, array literals cannot be used for re-assigning an array).

For primitive types:

int[] myIntArray = new int[3];
int[] myIntArray = {1, 2, 3};
int[] myIntArray = new int[]{1, 2, 3};

// Since Java 8. Doc of IntStream: https://docs.oracle.com/javase/8/docs/api/java/util/stream/IntStream.html

int [] myIntArray = IntStream.range(0, 100).toArray(); // From 0 to 99
int [] myIntArray = IntStream.rangeClosed(0, 100).toArray(); // From 0 to 100
int [] myIntArray = IntStream.of(12,25,36,85,28,96,47).toArray(); // The order is preserved.
int [] myIntArray = IntStream.of(12,25,36,85,28,96,47).sorted().toArray(); // Sort 

For classes, for example String, it's the same:

String[] myStringArray = new String[3];
String[] myStringArray = {"a", "b", "c"};
String[] myStringArray = new String[]{"a", "b", "c"};

The third way of initializing is useful when you declare an array first and then initialize it, pass an array as a function argument, or return an array. The explicit type is required.

String[] myStringArray;
myStringArray = new String[]{"a", "b", "c"};
Clement Cherlin
  • 234
  • 5
  • 12
glmxndr
  • 42,138
  • 27
  • 90
  • 115
  • 35
    What's the purpose of having both the second and third way to do it? – Quazi Irfan Apr 10 '15 at 03:23
  • 135
    @iamcreasy It looks like the second way doesn't work with return statements. `return {1,2,3}` gives an error, while `return new int[]{1,2,3}` works fine (assuming of course that your function returns an integer array). – Skylar Ittner Apr 16 '15 at 17:44
  • 1
    @SkylarMT But we can still use the first way to use with return statement. – Quazi Irfan Apr 18 '15 at 04:41
  • 7
    @iamcreasy I recently wrote a function that returned an array of ints. If an error happened inside the function, I wanted it to return a certain value, but the function needed to return an array. Which way works for a one-liner return statement? Only the third one. – Skylar Ittner Apr 20 '15 at 06:09
  • It's _not_ true that "array literals cannot be used for re-assigning an array" - the third syntax can be used to re-assign an array at any time. – peterflynn Jun 03 '15 at 19:18
  • The contents of an array cannot be set using an array literal. Array literals will create a new array each time as opposed to modifying the contents of the previous one. You can store this in an existing variable if you want, so the new array will replace the previous array. – Jezzamon Jul 26 '15 at 11:43
  • 1
    This answer seem incomplete to me, it is missing the part on Array of classes\objects, using `String` or *primitive-datatype-autoboxing* to demonstrate the case of classes is misleading. – Khaled.K Oct 21 '15 at 12:22
  • what if i have a parameter in the constructor? e.g. I have constructor public MyClass(int something){}; and I want to initialize array MyClass[] objs = new MyClass[3] (88); – M. Usman Khan Jan 11 '16 at 13:53
  • 1
    The 2nd form also can't be used to pass into a function. It gives an error. The 3rd form is fine. But I am not sure why the 2nd form can't be used for return or passing to a function? I would like to understand what happens behind the scene. – apadana May 20 '16 at 20:49
  • 6
    @apadana In the second case you are creating an anonymous object which is only defined in the enclosing scope (function or whatever). After returning it to the caller, it is no longer valid. Using the new keyword you allocate the new object from the heap and it is valid outside the defining scope. – teukkam Oct 18 '16 at 09:55
  • 1
    What do you mean by: "but only when you declare and affect the variable right away, array literals cannot be used for re-assigning an array"? – MrAP Apr 06 '17 at 21:47
  • Why does this work? public class Test { public static void main(String args[]) { final double[] doubles = {2.3, 2.4}; final long[] longs = {2,4L,6,8}; }} – djangofan May 29 '17 at 17:54
  • 1
    For newbies, state why you are giving triplicate answers. As a newbie, I thought I needed all 3 lines! Not impressed that first answer gets all the votes, even tho misleading. @codecubed has a much better simple answer. – www-0av-Com Apr 04 '18 at 12:06
  • Are array declarations automatically initialized in method calls too? Non-array variables are apparently not initialized on declaration in methods, as you get the 'not initialized' error message. – Androidcoder Dec 03 '20 at 18:18
  • @teukkam There is no such thing as an "an anonymous object which is only defined in the enclosing scope" in Java. All objects are allocated on the heap. The reason you cannot return `{1, 2, 3}` is purely syntactic and has nothing to do with object allocation. As proof, the following is completely valid: `public static int[] returnsALiteralIntArray() { int[] ints = {1, 2, 3}; return ints; }` – Clement Cherlin Mar 03 '21 at 13:20
297

There are two types of array.

One Dimensional Array

Syntax for default values:

int[] num = new int[5];

Or (less preferred)

int num[] = new int[5];

Syntax with values given (variable/field initialization):

int[] num = {1,2,3,4,5};

Or (less preferred)

int num[] = {1, 2, 3, 4, 5};

Note: For convenience int[] num is preferable because it clearly tells that you are talking here about array. Otherwise no difference. Not at all.

Multidimensional array

Declaration

int[][] num = new int[5][2];

Or

int num[][] = new int[5][2];

Or

int[] num[] = new int[5][2];

Initialization

 num[0][0]=1;
 num[0][1]=2;
 num[1][0]=1;
 num[1][1]=2;
 num[2][0]=1;
 num[2][1]=2;
 num[3][0]=1;
 num[3][1]=2;
 num[4][0]=1;
 num[4][1]=2;

Or

 int[][] num={ {1,2}, {1,2}, {1,2}, {1,2}, {1,2} };

Ragged Array (or Non-rectangular Array)

 int[][] num = new int[5][];
 num[0] = new int[1];
 num[1] = new int[5];
 num[2] = new int[2];
 num[3] = new int[3];

So here we are defining columns explicitly.
Another Way:

int[][] num={ {1}, {1,2}, {1,2,3,4,5}, {1,2}, {1,2,3} };

For Accessing:

for (int i=0; i<(num.length); i++ ) {
    for (int j=0;j<num[i].length;j++)
        System.out.println(num[i][j]);
}

Alternatively:

for (int[] a : num) {
  for (int i : a) {
    System.out.println(i);
  }
}

Ragged arrays are multidimensional arrays.
For explanation see multidimensional array detail at the official java tutorials

Isabella Engineer
  • 3,423
  • 1
  • 12
  • 6
  • Won't the first one lead to a null/empty array, instead of array with default values? – vipin8169 Feb 19 '17 at 00:25
  • I agree on that point, and we can add one more feature, we can change the size dynamically. – AdamIJK Apr 26 '17 at 11:26
  • I might argue with you on the point that a multidimensional array is a different "type" of array. It's simply a term used to describe an array that happens to contain other arrays. Both the outer arrays and the inner arrays (and those in between, if they exist) are just regular arrays. – Tim M. Jul 18 '17 at 15:19
129
Type[] variableName = new Type[capacity];

Type[] variableName = {comma-delimited values};



Type variableName[] = new Type[capacity]; 

Type variableName[] = {comma-delimited values};

is also valid, but I prefer the brackets after the type, because it's easier to see that the variable's type is actually an array.

rogerdpack
  • 50,731
  • 31
  • 212
  • 332
Nate
  • 16,295
  • 5
  • 44
  • 58
  • 22
    I agree on that point. The type of the variable is not "TYPE", but actually a TYPE[], so it makes sense to write it that way for me. – Chet Jul 29 '09 at 14:31
  • 3
    [Google style](http://google-styleguide.googlecode.com/svn/trunk/javaguide.html#s4.8.3.2-array-declarations) suggest this too. – wener Mar 05 '14 at 12:43
  • 11
    Note that `int[] a, b;` will not be the same as `int a[], b;`, a mistake easy to make if you use the latter form. – Jeroen Vannevel Mar 19 '15 at 01:46
40

There are various ways in which you can declare an array in Java:

float floatArray[]; // Initialize later
int[] integerArray = new int[10];
String[] array = new String[] {"a", "b"};

You can find more information in the Sun tutorial site and the JavaDoc.

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Anirudh
  • 2,129
  • 4
  • 24
  • 32
32

I find it is helpful if you understand each part:

Type[] name = new Type[5];

Type[] is the type of the variable called name ("name" is called the identifier). The literal "Type" is the base type, and the brackets mean this is the array type of that base. Array types are in turn types of their own, which allows you to make multidimensional arrays like Type[][] (the array type of Type[]). The keyword new says to allocate memory for the new array. The number between the bracket says how large the new array will be and how much memory to allocate. For instance, if Java knows that the base type Type takes 32 bytes, and you want an array of size 5, it needs to internally allocate 32 * 5 = 160 bytes.

You can also create arrays with the values already there, such as

int[] name = {1, 2, 3, 4, 5};

which not only creates the empty space but fills it with those values. Java can tell that the primitives are integers and that there are 5 of them, so the size of the array can be determined implicitly.

Ryan
  • 702
  • 7
  • 20
Chet
  • 18,801
  • 10
  • 35
  • 57
30

The following shows the declaration of an array, but the array is not initialized:

 int[] myIntArray = new int[3];

The following shows the declaration as well as initialization of the array:

int[] myIntArray = {1,2,3};

Now, the following also shows the declaration as well as initialization of the array:

int[] myIntArray = new int[]{1,2,3};

But this third one shows the property of anonymous array-object creation which is pointed by a reference variable "myIntArray", so if we write just "new int[]{1,2,3};" then this is how anonymous array-object can be created.

If we just write:

int[] myIntArray;

this is not declaration of array, but the following statement makes the above declaration complete:

myIntArray=new int[3];
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Amit Bhandari
  • 501
  • 6
  • 8
  • 3
    There is absolutely no difference between the second and third approaches, other than that the second approach *only* works when you're also declaring a variable. It's not clear what you mean by "shows the property of anonymous array-object creation" but they really are equivalent pieces of code. – Jon Skeet Feb 21 '15 at 23:08
  • 6
    Also, the first snippet *does* initialize the array - it is guaranteed to have the value 0 for every array element. – Jon Skeet Feb 21 '15 at 23:12
  • Is there really no difference between the second and the third one approaches? – eigenfield Jan 15 '20 at 06:28
27

Alternatively,

// Either method works
String arrayName[] = new String[10];
String[] arrayName = new String[10];

That declares an array called arrayName of size 10 (you have elements 0 through 9 to use).

Thomas Owens
  • 107,741
  • 94
  • 299
  • 427
  • 7
    What is the standard for which to use? I've only just discovered the former, and I find it horrifically misleading :| – Anti Earth Oct 03 '12 at 04:20
  • 2
    For what it's worth my prof said that the second way is more typical in Java and that it better conveys what is going on; as an array related to the type the variable was cast as. – Celeritas Aug 09 '13 at 04:50
  • 2
    For a side note: A language having more than one semantics for declaring one thing meaning bad language design. – Muhammad Suleman May 05 '15 at 11:17
25

Also, in case you want something more dynamic there is the List interface. This will not perform as well, but is more flexible:

List<String> listOfString = new ArrayList<String>();

listOfString.add("foo");
listOfString.add("bar");

String value = listOfString.get(0);
assertEquals( value, "foo" );
Paresh Mayani
  • 122,920
  • 69
  • 234
  • 290
Dave
  • 12,128
  • 5
  • 38
  • 48
  • 2
    what is the "<>" called in the list that you created ? – CyprUS Aug 27 '15 at 00:05
  • @CyprUS `List` is a generic class, it has a type as a parameter, enclosed in `<>`. That helps because you only need to define a generic type once and you can then use it with multiple different types. For a more detailed explanation look at https://docs.oracle.com/javase/tutorial/java/generics/types.html – Heimdall Nov 29 '18 at 14:27
15

There are two main ways to make an array:

This one, for an empty array:

int[] array = new int[n]; // "n" being the number of spaces to allocate in the array

And this one, for an initialized array:

int[] array = {1,2,3,4 ...};

You can also make multidimensional arrays, like this:

int[][] array2d = new int[x][y]; // "x" and "y" specify the dimensions
int[][] array2d = { {1,2,3 ...}, {4,5,6 ...} ...};
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
codecubed
  • 700
  • 7
  • 8
11

Take the primitive type int for example. There are several ways to declare and int array:

int[] i = new int[capacity];
int[] i = new int[] {value1, value2, value3, etc};
int[] i = {value1, value2, value3, etc};

where in all of these, you can use int i[] instead of int[] i.

With reflection, you can use (Type[]) Array.newInstance(Type.class, capacity);

Note that in method parameters, ... indicates variable arguments. Essentially, any number of parameters is fine. It's easier to explain with code:

public static void varargs(int fixed1, String fixed2, int... varargs) {...}
...
varargs(0, "", 100); // fixed1 = 0, fixed2 = "", varargs = {100}
varargs(0, "", 100, 200); // fixed1 = 0, fixed2 = "", varargs = {100, 200};

Inside the method, varargs is treated as a normal int[]. Type... can only be used in method parameters, so int... i = new int[] {} will not compile.

Note that when passing an int[] to a method (or any other Type[]), you cannot use the third way. In the statement int[] i = *{a, b, c, d, etc}*, the compiler assumes that the {...} means an int[]. But that is because you are declaring a variable. When passing an array to a method, the declaration must either be new Type[capacity] or new Type[] {...}.

Multidimensional Arrays

Multidimensional arrays are much harder to deal with. Essentially, a 2D array is an array of arrays. int[][] means an array of int[]s. The key is that if an int[][] is declared as int[x][y], the maximum index is i[x-1][y-1]. Essentially, a rectangular int[3][5] is:

[0, 0] [1, 0] [2, 0]
[0, 1] [1, 1] [2, 1]
[0, 2] [1, 2] [2, 2]
[0, 3] [1, 3] [2, 3]
[0, 4] [1, 4] [2, 4]
Unheilig
  • 15,690
  • 193
  • 65
  • 96
hyper-neutrino
  • 4,300
  • 1
  • 20
  • 40
11

In Java 9

Using different IntStream.iterate and IntStream.takeWhile methods:

int[] a = IntStream.iterate(10, x -> x <= 100, x -> x + 10).toArray();

Out: [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]


int[] b = IntStream.iterate(0, x -> x + 1).takeWhile(x -> x < 10).toArray();

Out: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

In Java 10

Using the Local Variable Type Inference:

var letters = new String[]{"A", "B", "C"};
Oleksandr Pyrohov
  • 13,194
  • 4
  • 51
  • 85
10

If you want to create arrays using reflections then you can do like this:

 int size = 3;
 int[] intArray = (int[]) Array.newInstance(int.class, size ); 
Unheilig
  • 15,690
  • 193
  • 65
  • 96
Muhammad Suleman
  • 2,718
  • 2
  • 23
  • 31
10

In Java 8 you can use something like this.

String[] strs = IntStream.range(0, 15)  // 15 is the size
    .mapToObj(i -> Integer.toString(i))
    .toArray(String[]::new);
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Chamly Idunil
  • 1,558
  • 1
  • 12
  • 27
9

Declaring an array of object references:

class Animal {}

class Horse extends Animal {
    public static void main(String[] args) {

        /*
         * Array of Animal can hold Animal and Horse (all subtypes of Animal allowed)
         */
        Animal[] a1 = new Animal[10];
        a1[0] = new Animal();
        a1[1] = new Horse();

        /*
         * Array of Animal can hold Animal and Horse and all subtype of Horse
         */
        Animal[] a2 = new Horse[10];
        a2[0] = new Animal();
        a2[1] = new Horse();

        /*
         * Array of Horse can hold only Horse and its subtype (if any) and not
           allowed supertype of Horse nor other subtype of Animal.
         */
        Horse[] h1 = new Horse[10];
        h1[0] = new Animal(); // Not allowed
        h1[1] = new Horse();

        /*
         * This can not be declared.
         */
        Horse[] h2 = new Animal[10]; // Not allowed
    }
}
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
2787184
  • 3,257
  • 7
  • 37
  • 68
8

Array is a sequential list of items

int item = value;

int [] one_dimensional_array = { value, value, value, .., value };

int [][] two_dimensional_array =
{
  { value, value, value, .. value },
  { value, value, value, .. value },
    ..     ..     ..        ..
  { value, value, value, .. value }
};

If it's an object, then it's the same concept

Object item = new Object();

Object [] one_dimensional_array = { new Object(), new Object(), .. new Object() };

Object [][] two_dimensional_array =
{
  { new Object(), new Object(), .. new Object() },
  { new Object(), new Object(), .. new Object() },
    ..            ..               ..
  { new Object(), new Object(), .. new Object() }
};

In case of objects, you need to either assign it to null to initialize them using new Type(..), classes like String and Integer are special cases that will be handled as following

String [] a = { "hello", "world" };
// is equivalent to
String [] a = { new String({'h','e','l','l','o'}), new String({'w','o','r','l','d'}) };

Integer [] b = { 1234, 5678 };
// is equivalent to
Integer [] b = { new Integer(1234), new Integer(5678) };

In general you can create arrays that's M dimensional

int [][]..[] array =
//  ^ M times [] brackets

    {{..{
//  ^ M times { bracket

//            this is array[0][0]..[0]
//                         ^ M times [0]

    }}..}
//  ^ M times } bracket
;

It's worthy to note that creating an M dimensional array is expensive in terms of Space. Since when you create an M dimensional array with N on all the dimensions, The total size of the array is bigger than N^M, since each array has a reference, and at the M-dimension there is an (M-1)-dimensional array of references. The total size is as following

Space = N^M + N^(M-1) + N^(M-2) + .. + N^0
//      ^                              ^ array reference
//      ^ actual data
Khaled.K
  • 5,516
  • 1
  • 30
  • 47
7

Declare and initialize for Java 8 and later. Create a simple integer array:

int [] a1 = IntStream.range(1, 20).toArray();
System.out.println(Arrays.toString(a1));
// Output: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]

Create a random array for integers between [-50, 50] and for doubles [0, 1E17]:

int [] a2 = new Random().ints(15, -50, 50).toArray();
double [] a3 = new Random().doubles(5, 0, 1e17).toArray();

Power-of-two sequence:

double [] a4 = LongStream.range(0, 7).mapToDouble(i -> Math.pow(2, i)).toArray();
System.out.println(Arrays.toString(a4));
// Output: [1.0, 2.0, 4.0, 8.0, 16.0, 32.0, 64.0]

For String[] you must specify a constructor:

String [] a5 = Stream.generate(()->"I will not squeak chalk").limit(5).toArray(String[]::new);
System.out.println(Arrays.toString(a5));

Multidimensional arrays:

String [][] a6 = List.of(new String[]{"a", "b", "c"} , new String[]{"d", "e", "f", "g"})
    .toArray(new String[0][]);
System.out.println(Arrays.deepToString(a6));
// Output: [[a, b, c], [d, e, f, g]]
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Kirill Podlivaev
  • 396
  • 5
  • 10
  • Are -50 and/or +50 actually included? That is, is the internal open at one or both ends? – Peter Mortensen Feb 21 '18 at 22:38
  • 1
    -50 is included and +50 is excluded. This information from [java api](https://docs.oracle.com/javase/8/docs/api/java/util/Random.html#ints-long-int-int-) "given origin (inclusive) and bound (exclusive)." I use interval declaration from [wiki](https://en.wikipedia.org/wiki/Interval_(mathematics)#Classification_of_intervals) . So I think it will be more correct [-50, 50) – Kirill Podlivaev Mar 21 '18 at 09:56
6

For creating arrays of class Objects you can use the java.util.ArrayList. to define an array:

public ArrayList<ClassName> arrayName;
arrayName = new ArrayList<ClassName>();

Assign values to the array:

arrayName.add(new ClassName(class parameters go here);

Read from the array:

ClassName variableName = arrayName.get(index);

Note:

variableName is a reference to the array meaning that manipulating variableName will manipulate arrayName

for loops:

//repeats for every value in the array
for (ClassName variableName : arrayName){
}
//Note that using this for loop prevents you from editing arrayName

for loop that allows you to edit arrayName (conventional for loop):

for (int i = 0; i < arrayName.size(); i++){
    //manipulate array here
}
Samuel Newport
  • 165
  • 1
  • 10
5

If by "array" you meant using java.util.Arrays, you can do it like that :

List<String> number = Arrays.asList("1", "2", "3");

Out: ["1", "2", "3"]

This one is pretty simple and straightforward.

Sylhare
  • 3,058
  • 4
  • 36
  • 51
4

Another way to declare and initialize ArrayList:

private List<String> list = new ArrayList<String>(){{
    add("e1");
    add("e2");
}};
Clement.Xu
  • 1,040
  • 1
  • 13
  • 24
4

There are a lot of answers here. I am adding a few tricky ways to create arrays (from an exam point of view it's good to know this)

  1. Declare and define an array

    int intArray[] = new int[3];
    

    This will create an array of length 3. As it holds a primitive type, int, all values are set to 0 by default. For example,

    intArray[2]; // Will return 0
    
  2. Using box brackets [] before the variable name

    int[] intArray = new int[3];
    intArray[0] = 1;  // Array content is now {1, 0, 0}
    
  3. Initialise and provide data to the array

    int[] intArray = new int[]{1, 2, 3};
    

    This time there isn't any need to mention the size in the box bracket. Even a simple variant of this is:

    int[] intArray = {1, 2, 3, 4};
    
  4. An array of length 0

    int[] intArray = new int[0];
    int length = intArray.length; // Will return length 0
    

    Similar for multi-dimensional arrays

    int intArray[][] = new int[2][3];
    // This will create an array of length 2 and
    //each element contains another array of length 3.
    // { {0,0,0},{0,0,0} }
    int lenght1 = intArray.length; // Will return 2
    int length2 = intArray[0].length; // Will return 3
    

Using box brackets before the variable:

    int[][] intArray = new int[2][3];

It's absolutely fine if you put one box bracket at the end:

    int[] intArray [] = new int[2][4];
    int[] intArray[][] = new int[2][3][4]

Some examples

    int [] intArray [] = new int[][] {{1,2,3},{4,5,6}};
    int [] intArray1 [] = new int[][] {new int[] {1,2,3}, new int [] {4,5,6}};
    int [] intArray2 [] = new int[][] {new int[] {1,2,3},{4,5,6}}
    // All the 3 arrays assignments are valid
    // Array looks like {{1,2,3},{4,5,6}}

It's not mandatory that each inner element is of the same size.

    int [][] intArray = new int[2][];
    intArray[0] = {1,2,3};
    intArray[1] = {4,5};
    //array looks like {{1,2,3},{4,5}}

    int[][] intArray = new int[][2] ; // This won't compile. Keep this in mind.

You have to make sure if you are using the above syntax, that the forward direction you have to specify the values in box brackets. Else it won't compile. Some examples:

    int [][][] intArray = new int[1][][];
    int [][][] intArray = new int[1][2][];
    int [][][] intArray = new int[1][2][3];

Another important feature is covariant

    Number[] numArray = {1,2,3,4};   // java.lang.Number
    numArray[0] = new Float(1.5f);   // java.lang.Float
    numArray[1] = new Integer(1);    // java.lang.Integer
   // You can store a subclass object in an array that is declared
   // to be of the type of its superclass.
   // Here 'Number' is the superclass for both Float and Integer.

   Number num[] = new Float[5]; // This is also valid

IMPORTANT: For referenced types, the default value stored in the array is null.

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Arundev
  • 1,078
  • 16
  • 18
4

An array has two basic types.

Static Array: Fixed size array (its size should be declared at the start and can not be changed later)

Dynamic Array: No size limit is considered for this. (Pure dynamic arrays do not exist in Java. Instead, List is most encouraged.)

To declare a static array of Integer, string, float, etc., use the below declaration and initialization statements.

int[] intArray = new int[10];
String[] intArray = new int[10];
float[] intArray = new int[10];

// Here you have 10 index starting from 0 to 9

To use dynamic features, you have to use List... List is pure dynamic Array and there is no need to declare size at beginning. Below is the proper way to declare a list in Java -

ArrayList<String> myArray = new ArrayList<String>();
myArray.add("Value 1: something");
myArray.add("Value 2: something more");
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Zia
  • 470
  • 3
  • 10
  • 1
    Thank you @Matheus for improving my answers. I would request you to upvote this, so this can reach more users. – Zia Mar 19 '20 at 06:49
3

With local variable type inference you only have to specify the type once:

var values = new int[] { 1, 2, 3 };

Or

int[] values = { 1, 2, 3 }
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Konstantin Spirin
  • 17,942
  • 12
  • 64
  • 88
2
int[] x = new int[enter the size of array here];

Example:

int[] x = new int[10];
              

Or

int[] x = {enter the elements of array here];

Example:

int[] x = {10, 65, 40, 5, 48, 31};
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Virangaa
  • 119
  • 6
1

An array can contain primitives data types as well as objects of a class depending on the definition of the array. In case of primitives data types, the actual values are stored in contiguous memory locations. In case of objects of a class, the actual objects are stored in the heap segment.


One-Dimensional Arrays:

The general form of a one-dimensional array declaration is

type var-name[];
OR
type[] var-name;

Instantiating an Array in Java

var-name = new type [size];

For example,

int intArray[];  // Declaring an array
intArray = new int[20];  // Allocating memory to the array

// The below line is equal to line1 + line2
int[] intArray = new int[20]; // Combining both statements in one
int[] intArray = new int[]{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };

// Accessing the elements of the specified array
for (int i = 0; i < intArray.length; i++)
    System.out.println("Element at index " + i + ": "+ intArray[i]);

Ref: Arrays in Java

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Zgpeace
  • 1,989
  • 15
  • 20
1

One another full example with a movies class:

public class A {

    public static void main(String[] args) {

        class Movie {

            String movieName;
            String genre;
            String movieType;
            String year;
            String ageRating;
            String rating;

            public Movie(String [] str)
            {
                this.movieName = str[0];
                this.genre = str[1];
                this.movieType = str[2];
                this.year = str[3];
                this.ageRating = str[4];
                this.rating = str[5];
            }
        }

        String [] movieDetailArr = {"Inception", "Thriller", "MovieType", "2010", "13+", "10/10"};

        Movie mv = new Movie(movieDetailArr);

        System.out.println("Movie Name: "+ mv.movieName);
        System.out.println("Movie genre: "+ mv.genre);
        System.out.println("Movie type: "+ mv.movieType);
        System.out.println("Movie year: "+ mv.year);
        System.out.println("Movie age : "+ mv.ageRating);
        System.out.println("Movie  rating: "+ mv.rating);
    }
}
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Dupinder Singh
  • 4,165
  • 3
  • 19
  • 45
1
package com.examplehub.basics;

import java.util.Arrays;

public class Array {

    public static void main(String[] args) {
        int[] numbers = {1, 2, 3, 4, 5};

        /*
         * numbers[0] = 1
         * numbers[1] = 2
         * numbers[2] = 3
         * numbers[3] = 4
         * numbers[4] = 5
         */
        System.out.println("numbers[0] = " + numbers[0]);
        System.out.println("numbers[1] = " + numbers[1]);
        System.out.println("numbers[2] = " + numbers[2]);
        System.out.println("numbers[3] = " + numbers[3]);
        System.out.println("numbers[4] = " + numbers[4]);

        /*
         * Array index is out of bounds
         */
        //System.out.println(numbers[-1]);
        //System.out.println(numbers[5]);


        /*
         * numbers[0] = 1
         * numbers[1] = 2
         * numbers[2] = 3
         * numbers[3] = 4
         * numbers[4] = 5
         */
        for (int i = 0; i < 5; i++) {
            System.out.println("numbers[" + i + "] = " + numbers[i]);
        }

        /*
         * Length of numbers = 5
         */
        System.out.println("length of numbers = " + numbers.length);

        /*
         * numbers[0] = 1
         * numbers[1] = 2
         * numbers[2] = 3
         * numbers[3] = 4
         * numbers[4] = 5
         */
        for (int i = 0; i < numbers.length; i++) {
            System.out.println("numbers[" + i + "] = " + numbers[i]);
        }

        /*
         * numbers[4] = 5
         * numbers[3] = 4
         * numbers[2] = 3
         * numbers[1] = 2
         * numbers[0] = 1
         */
        for (int i = numbers.length - 1; i >= 0; i--) {
            System.out.println("numbers[" + i + "] = " + numbers[i]);
        }

        /*
         * 12345
         */
        for (int number : numbers) {
            System.out.print(number);
        }
        System.out.println();

        /*
         * [1, 2, 3, 4, 5]
         */
        System.out.println(Arrays.toString(numbers));



        String[] company = {"Google", "Facebook", "Amazon", "Microsoft"};

        /*
         * company[0] = Google
         * company[1] = Facebook
         * company[2] = Amazon
         * company[3] = Microsoft
         */
        for (int i = 0; i < company.length; i++) {
            System.out.println("company[" + i + "] = " + company[i]);
        }

        /*
         * Google
         * Facebook
         * Amazon
         * Microsoft
         */
        for (String c : company) {
            System.out.println(c);
        }

        /*
         * [Google, Facebook, Amazon, Microsoft]
         */
        System.out.println(Arrays.toString(company));

        int[][] twoDimensionalNumbers = {
                {1, 2, 3},
                {4, 5, 6, 7},
                {8, 9},
                {10, 11, 12, 13, 14, 15}
        };

        /*
         * total rows  = 4
         */
        System.out.println("total rows  = " + twoDimensionalNumbers.length);

        /*
         * row 0 length = 3
         * row 1 length = 4
         * row 2 length = 2
         * row 3 length = 6
         */
        for (int i = 0; i < twoDimensionalNumbers.length; i++) {
            System.out.println("row " + i + " length = " + twoDimensionalNumbers[i].length);
        }

        /*
         * row 0 = 1 2 3
         * row 1 = 4 5 6 7
         * row 2 = 8 9
         * row 3 = 10 11 12 13 14 15
         */
        for (int i = 0; i < twoDimensionalNumbers.length; i++) {
            System.out.print("row " + i + " = ");
            for (int j = 0; j < twoDimensionalNumbers[i].length; j++) {
                System.out.print(twoDimensionalNumbers[i][j] + " ");
            }
            System.out.println();
        }

        /*
         * row 0 = [1, 2, 3]
         * row 1 = [4, 5, 6, 7]
         * row 2 = [8, 9]
         * row 3 = [10, 11, 12, 13, 14, 15]
         */
        for (int i = 0; i < twoDimensionalNumbers.length; i++) {
            System.out.println("row " + i + " = " + Arrays.toString(twoDimensionalNumbers[i]));
        }

        /*
         * 1 2 3
         * 4 5 6 7
         * 8 9
         * 10 11 12 13 14 15
         */
        for (int[] ints : twoDimensionalNumbers) {
            for (int num : ints) {
                System.out.print(num + " ");
            }
            System.out.println();
        }

        /*
         * [1, 2, 3]
         * [4, 5, 6, 7]
         * [8, 9]
         * [10, 11, 12, 13, 14, 15]
         */
        for (int[] ints : twoDimensionalNumbers) {
            System.out.println(Arrays.toString(ints));
        }


        int length = 5;
        int[] array = new int[length];
        for (int i = 0; i < 5; i++) {
            array[i] = i + 1;
        }

        /*
         * [1, 2, 3, 4, 5]
         */
        System.out.println(Arrays.toString(array));

    }
}

Source from examplehub/java

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
shellhub
  • 2,695
  • 19
  • 14
0

Declare Array: int[] arr;

Initialize Array: int[] arr = new int[10]; 10 represents the number of elements allowed in the array

Declare Multidimensional Array: int[][] arr;

Initialize Multidimensional Array: int[][] arr = new int[10][17]; 10 rows and 17 columns and 170 elements because 10 times 17 is 170.

Initializing an array means specifying the size of it.

kundus
  • 81
  • 6
0

It's very easy to declare and initialize an array. For example, you want to save five integer elements which are 1, 2, 3, 4, and 5 in an array. You can do it in the following way:

a)

int[] a = new int[5];

or

b)

int[] a = {1, 2, 3, 4, 5};

so the basic pattern is for initialization and declaration by method a) is:

datatype[] arrayname = new datatype[requiredarraysize];

datatype should be in lower case.

So the basic pattern is for initialization and declaration by method a is:

If it's a string array:

String[] a = {"as", "asd", "ssd"};

If it's a character array:

char[] a = {'a', 's', 'w'};

For float double, the format of array will be same as integer.

For example:

double[] a = {1.2, 1.3, 12.3};

but when you declare and initialize the array by "method a" you will have to enter the values manually or by loop or something.

But when you do it by "method b" you will not have to enter the values manually.

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123