Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

4 Answers

up vote 13 down vote accepted

Java has an equivalent construct:

import java.util.Arrays;

public class Foo {
   public void method(String[] myStrArray) {
      System.out.println(Arrays.toString((myStrArray)));
   }

   public static void main(String[] args) {
      Foo foo = new Foo();
      foo.method(new String[]{"hello", "goodbye"}); // **array created inline**
   }
}
share|improve this answer
Yes, this was exactly what I wanted to achieve. Thanks! – aksamit May 21 '11 at 12:33
@aksamit: you're welcome! – Hovercraft Full Of Eels May 21 '11 at 12:48
+1. See my answer for how to get rid of that extraneous type annotation. – missingfaktor May 21 '11 at 18:51

No

But we have anonymous class.

foo(new Runnable(){public void run(){}});
share|improve this answer
You sure can create arrays inline in Java (as demonstrated by @Hovercraft's and my own answer). Regarding the anonymous class bit, how is that even relevant to the question? – missingfaktor May 22 '11 at 5:55
@missing what OP wants is default arg. not as arg in method call – Jigar Joshi May 22 '11 at 7:44
@Jigar: I don't think so. See his comment under @Hovercraft's answer. He seems to have misphrased the question. I'll fix that. – missingfaktor May 22 '11 at 7:51
@missing ah..ok – Jigar Joshi May 22 '11 at 7:53
@Jigar: If the question were about default arguments, the answer would involve method overloading, and not anonymous classes. – missingfaktor May 22 '11 at 7:54
show 2 more comments

Java has varargs methods:

public void foo(String ... args){
    for(String arg : args){
        // do something
    }
}

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:

public void foo(String[] args)
share|improve this answer
Thanks, very neat. – aksamit May 21 '11 at 12:32

@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:

import java.util.Arrays;

// Utility class
class Array {
  public static <A> A[] of(A ... elements) {
    return elements;
  }
}

// Main class
class Main {
  public static void method(String[] s) {
    System.out.println(Arrays.toString(s));
  }

  public static void main(String[] args) {
    method(Array.of("a", "b", "c"));
  }
}
share|improve this answer
2  
I've never seen this before. Thanks for the education! – Hovercraft Full Of Eels May 21 '11 at 18:53
@Hovercraft: You're welcome. :-) – missingfaktor May 22 '11 at 5:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.