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

Simple question that has been bugging me since I learned how to play with arrays in Java

I can write:

AClass[] array = {object1, object2}

I can also write:

AClass[] array = new AClass[2];
...
array[0] = object1;
array[1] = object2;

but I can't write :

AClass[] array;
...
array = {object1,object2};

And I would like to know why this is blocked by java.

I know how to work around it but form time to time it would be simpler

for example:

public void selectedPointsToMove(cpVect coord){
        if(tab == null){
            if(arePointsClose(coord, point1, 10)){
                cpVect[] tempTab = {point1};
                tab = tempTab;
            }else if(arePointsClose(point2, coord, 10)){
                cpVect[] tempTab = {point2};
                tab = tempTab;
            }else{
                cpVect[] tempTab = {point1,point2};
                tab = tempTab;
            }
        }
    }
share|improve this question
Sorry about the text format but for some reason in China the text layout buttons don't appear :S – Jason Rogers Mar 22 '11 at 6:34
for code, just make sure it is indented with 4 spaces or more. – Mat Mar 22 '11 at 6:37
the other problem is that you had TAB characters in the code you pasted. This messes up the formatting. – Stephen C Mar 22 '11 at 6:37
Oki thanks, eclipse uses tabs in the indentation so when I copy paste it messes things up . thanks for the edit – Jason Rogers Mar 22 '11 at 6:41

2 Answers

up vote 28 down vote accepted

And I would like to know why this is blocked by java.

You'd have to ask the Java designers. There might be some subtle grammatical reason for the restriction. Note that some of the array creation / initialization constructs were not in Java 1.0, and (IIRC) were added in Java 1.1.

But "why" is immaterial ... the restriction is there, and you have to live with it.

I know how to work around it but form time to time it would be simpler

You can write this:

AClass[] array;
...
array = new AClass[]{object1, object2};
share|improve this answer
1  
w/o the new declaration there would be no difference between a statement block and array initializer (like in javascript, which can be misleading} – bestsss Mar 22 '11 at 7:39
1  
It would be confusing ... and hard to parse. Consider if {o1()} was a valid expression and {o1();} was a valid statement block. The parser has to get to the '}' or ';' before it can distinguish the two cases. The grammatical issue is not subtle at all!! – Stephen C Mar 22 '11 at 11:12

I can't answer the why part.

But if you want something dynamic then why don't you consider Collection ArrayList.

ArrrayList can be of any Object type.

And if as an compulsion you want it as an array you can use the toArray() method on it.

For example:

            ArrayList<String> al = new ArrayList<String>();
            al.add("one");
            al.add("two");
            String[] strArray = (String[]) al.toArray(new String[0]);

I hope this might help you.

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.