Why does this work:
String[] array = {"a", "b", "c"};
List<String> list = Arrays.asList(array);
but this does not:
List<String> list = Arrays.asList({"a","b","c"});
|
Why does this work:
but this does not:
|
||||
|
|
|
This as a short hand only available when constructing and assigning an array.
You can do this though:
As |
|||
|
|
|
You can try
|
|||||||||||||||||||
|
|
You question is why one works and the other does not, right? Well, the reason is that What you seem to imply with it is that you want to pass an array initializer without providing a full array creation expression (JLS 15.10). The correct array creation expressions are, as others have pointed out:
As stated in JLS 10.6 Array Initializers, or
As stated in JLS 15.10 Array Creation Expressions. This second one is useful for inlining, so you could pass it instead of an array variable directly. Since the
Or simply pass the variable arguments that will be automatically mapped to an array:
|
||||
|
|