i tried something like this:
boolean funkyBoolean = true;
int array[] = funkyBoolean ? {1,2,3} : {4,5,6};
But this code won't even compile.
Is there any explanation for this? isn't funkyBoolean ? {1,2,3} : {4,5,6}
a valid expression?
thank's in advance!
That's what the Java Spec says (10.6). So the 'short' version (with the creation expression) is only allowed in declarations (
int[] a = {1,2,3};
), in all other cases you need anew int[]{1,2,3}
construct, if you want to use the initializer.You can only use the
{1, 2, 3}
syntax in very limited situations, and this isn't one of them. Try this:By the way, good Java style is to write the declaration as:
EDIT: For the record, the reason that
{1, 2, 3}
is so restricted is that its type is ambiguous. In theory it could be an array of integers, longs, floats, etc. Besides, the Java grammar as defined by the JLS forbids it, so that is that.