Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I declare an array in Java?

share|improve this question
4  
Simple question, but I've been away from Java for a while and am rusty on some of the syntax. – bestattendance Jul 29 '09 at 14:26
19  
From the FAQ: As long as your question is detailed and specific, written clearly and simply, of interest to at least one other programmer somewhere ... it is welcome here. No question is too trivial or too "newbie". Voting to reopen. Now if you can find a duplicate, that would be different. – paxdiablo Jul 29 '09 at 14:56
2  
This question was useful to me, especially with the thorough top answer. I googled it, and seeing stack overflow amongst the results, was confident there would be a concise and accurate answer for me. – Billy Moon Jan 22 '12 at 8:14
3  
@paxdiablo still I'm surprised to see this many upvotes, if you would ask something like this in 2013 it would end up having -50 real quick. – MDeSchaepmeester Apr 18 at 11:30
1  
@Mario, I concur. At some point they changed the voting buttons to state "This question shows research effort; ..." which is clearly not the case here. You should also keep in mind I made that comment 4 years ago, my views have no doubt changed quite a bit in the meantime :-) So, while I wouldn't close it, I certainly wouldn't upvote it. However, I'm just one of many in the SO "swarm". – paxdiablo Apr 18 at 11:34
show 1 more comment

6 Answers

up vote 125 down vote accepted

You can either use array declaration or array literal (but only when you declare and affect the variable right away, array literals can not 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};

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"};
share|improve this answer
9  
I fail to see the difference between the two, but maybe that's just me ... – Jean Jul 29 '09 at 14:32
The answer sounds like "String" is not a type. Can you please elaborate? – Johannes Schaub - litb Jul 29 '09 at 15:57
5  
String is an object, not a primitive type. The author is saying that this method works with both. – bestattendance Jul 29 '09 at 16:08
Type[] variableName = new Type[capacity];

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



Type variableName[] = new Type[capacity]; 

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.

share|improve this answer
4  
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

There are a 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 on the Sun Tutorial site and the JavaDoc.

share|improve this answer

I find its helpful if you understand each part:

Type[] name = new Type[5];

Type[] is the type of the variable called name. The keyword 'new' says to allocate memory for the new array. The number between the bracket says how large it will be and how much memory to allocate.

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.

share|improve this answer
People like you who explain line-by-line what's actually going on are invaluable to newcomers like me. Thanks Chet! – muppethead Nov 9 '12 at 1:33

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).

share|improve this answer
3  
What is the standard for which to use? I've only just discovered the former, and I find it horrifically misleading :| – Anti Earth Oct 3 '12 at 4:20

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" );
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.