Search code examples
jrubyvariadic-functionsargument-error

JRuby: how to call a Java variadic function without optional arguments


I have a function with a signature similar to String.format(String, Object...).

I want to call this function from JRuby without the last parameters (since it is optional), but my code throws an ArgumentError (wrong # of arguments(1 for 2))

Is there a way to call this function with only 1 argument just like I would do in Java?


Solution

  • Wrap the varargs into a Java array

      jruby-1.4.0 > java.lang.System.out.format('foo %d, %d, %d, %d, %d', [1, 2, 3, 4, 5].to_java)
      foo 1, 2, 3, 4, 5 => #<Java::JavaIo::PrintStream:0x79ef3ccd> 
    

    If all you want is to skip the varargs, pass an empty Java array instead

      jruby-1.4.0 > java.lang.System.out.format('foo ', [].to_java)