Scala 的 Comparable 特征是什么?
我正在寻找 C# IComparable 的 Scala 对应项,并且发现了 Comparable 特征。我的意思是 - 提到了可比较,但是当我在 http://www 搜索它时.scala-lang.org/api/current/scala/ 我得到 0 次点击。因为这个名字,我使用 Google 得到了很多“Scala 与……相比如何”的结果。
有没有关于这个神秘的可比事物的资源我可以阅读?毕竟 Ordered 扩展了它,所以它必须存在。
I am searching for Scala counterpart of C# IComparable, and I found Comparable trait. I mean -- Comparable is mentioned, but when I search for it at http://www.scala-lang.org/api/current/scala/ I get 0 hits. Because of the name, using Google I get a lot of "how Scala is comparable to..." results.
Is there any resource I could read about this mysterious Comparable thing? After all Ordered extends it, so it has to exist.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您看到提到的
Comparable
一定是java.lang.Comparable
。 Scala stdlib 中没有名为Comparable
的特征。 Scala 的Ordered
特性扩展了java.lang.Comparable
。The
Comparable
that you saw mentioned must have beenjava.lang.Comparable
. There is no trait namedComparable
in Scala stdlib. Scala'sOrdered
trait extendsjava.lang.Comparable
.