我有这个简单的代码:
import java.util
import scala.collection.JavaConversions._
def f(x: util.List[Int]): Array[Int] = {
x.toArray[Int]
}
它失败了error: missing arguments for method toArray in trait List
但是,源代码toArray
如下:
trait TraversableOnce[+A] extends Any with GenTraversableOnce[A] {
...
def toArray[B >: A : ClassTag]: Array[B] = {
if (isTraversableAgain) {
val result = new Array[B](size)
copyToArray(result, 0)
result
}
else toBuffer.toArray
}
很明显,没有遗漏的论点。
1)这怎么可能?有简单的解决方法吗?还是我错过了什么?
2) 错误信息以 继续follow this method with '_' if you want to treat it as a partially applied function
。你不觉得这是一个愚蠢的提议吗?我已经声明了返回值,所以部分应用的函数不能工作。编译器应该看到它。