Hello,
I have a beginner Java question about array constructors.
This is okay:
final int[] blah = { 45, -45 };
for (int i : blah ) { ; }
This is illegal but would be sweet:
for (int i : { 45, -45 } ) { ; }
This works but is ugly and greater space/time?
for (int i : new int[] { 45, -45 } ) { ; }
Comments?
TIA!
StanO

