Why do all scala vararg methods, when used from java, seem to accept a Seq of variables, and can't be used as java native vararg methods. Is this a bug?

For instance, Buffer has method def append(elems: A*): Unit. But in java it has another signature: void append(Seq<A>).

link|improve this question

80% accept rate
feedback

2 Answers

up vote 4 down vote accepted

It is not a bug. It is a design choice that favors vararg use within Scala over interoperability with Java. For example, it allows you to pass a List into a Scala varargs method without having to convert it to an Array on the way.

If you need to use Scala varargs from Java, you should create some scala Seq instead. You can, for example, write a Java wrapper to get an array automatically created, and then use the genericWrapArray method from the Predef object.

link|improve this answer
Well, yeah, that works, but is so wrong)) – F0RR Nov 29 '11 at 16:25
feedback

you can easily cast a Seq in varargs using :_*. For example :

val b = collection.mutable.ListBuffer.empty[Int]
b.append(List(1, 2):_*)

so this avoid code duplication in the collection API.

You can also simply use appendAll :

b.appendAll((List(1, 2))
link|improve this answer
Well, yes, I can, but how does that answer my question?)) – F0RR Nov 29 '11 at 11:05
I've just modified my answer. – David Nov 29 '11 at 11:09
The problem is not that Seq can't be casted to varargs in scala. The problem is that I have to create a Seq in Java to use a method with varargs. – F0RR Nov 29 '11 at 11:11
So why not use appendAll ? – David Nov 29 '11 at 11:17
Downvoted as you are still answwering a different question than the one asked. – Dave Griffith Nov 29 '11 at 11:24
feedback

Your Answer

 
or
required, but never shown

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