作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是一名强大的 Java 开发人员,最近开始尝试在空闲时间学习 Scala。我正在通过 Scala by Example来自 scala-lang.org 的 PDF,我很困惑第一个示例中的快速排序是如何工作的。这是代码:
object QuickSort extends App {
def sort(input: Array[Int]): Array[Int] = {
if(input.length <= 1) input
else
{
val pivot = input(input.length / 2)
Array.concat(
sort(input filter (pivot >)),
input filter (pivot ==),
sort(input filter (pivot <))
)
}
}
sort(Array(5, 4, 3, 2, 1)) foreach println
}
最佳答案
你缺少隐式。有一个 few questions关于 implicits在堆栈溢出上。在您正在阅读的 PDF 上,请参阅第 15 章,从第 113 页开始。在 Scaladoc 上,您将看到对象 scala.Predef
上的相关隐式。 -- 只需寻找带有 Array
的隐式方法作为输入参数并返回其他内容。
PS:哎呀,上面写着Array
是 Seq
!实际上,在 Scala 2.8 之前可能就是这种情况,但从那时起 Array
是 Java Array
,简单明了。
关于scala - scala.Array 如何是 Seq?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6165399/
我是一名优秀的程序员,十分优秀!