作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有些东西我不太明白希望有人能解释一下..
我有序列 [字符串]
val strDeps: Seq[String] = ...
scala> print(strDeps.sortWith(_.reverse.compareTo(_.reverse) < 0) mkString ("\n"))
<console>:15: error: wrong number of parameters; expected = 2
print(strDeps.sortWith(_.reverse.compareTo(_.reverse) < 0) mkString ("\n"))
^
scala> print(strDeps.sortWith(_.compareTo(_) < 0) mkString ("\n"))
// this is fine
scala> print(strDeps.sortWith((a,b) => a.reverse.compareTo(b.reverse) < 0) mkString ("\n"))
// this works fine too
最佳答案
_
仅扩展到尽可能小的范围。
内_.reverse
部分已被解释为 x => x.reverse
因此 sortWith
中缺少参数.
关于Scala 占位符语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8260367/
我是一名优秀的程序员,十分优秀!