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;
}
}
}
