In PHP you can do the following:
method(array("a", "b"));
Can you in Java initialize a String array as an argument in the method call, something like tihs:
method(new String[] = {"a", "b"});
Thanks!
|
|
|
Java has an equivalent construct:
|
|||||||
|
|
No But we have anonymous class.
|
|||||||||||
|
|
Java has varargs methods:
You can call such a method with zero to n parameters, the compiler creates an array from the parameters, e.g. the method is equivalent to this Signature:
|
|||
|
|
|
@Hovercraft's answer shows how to create an array inline in Java. You could further improve on that solution by using an utility method (one that makes use of Java's limited type inference) to get rid of the redundant array type annotation. Code:
|
|||||||
|