This is a troublesome violation of type safety in my project, so I'm looking for a way to disable it. It seems that if a function takes an AnyRef (or a java.lang.Object), you can call the function with any combination of parameters, and Scala will coalesce the parameters into a Tuple object and invoke the function.
In my case the function isn't expecting a Tuple, and fails at runtime. I would expect this situation to be caught at compile time.
object WhyTuple {
def main(args: Array[String]): Unit = {
fooIt("foo", "bar")
}
def fooIt(o: AnyRef) {
println(o.toString)
}
}
Output:
(foo,bar)
AnyRefas an argument, it expects the argument to be anything, no? I mean even if scala didn't automatically pack the arguments into a tuple, you'd still be able to pass a tuple explicitly, which is of course perfectly type-safe because your function takes anything and tuples are anythings. If your function can only handle certain types of arguments it should either be declared to only take these kinds of arguments or check the argument type dynamically. – sepp2k May 17 '10 at 16:41