如何使用“>”方法为每种类型定义 max 函数?

发布于 2024-11-06 12:03:44 字数 77 浏览 4 评论 0原文

是否可以在具有方法 > (以及所有 AnyVals)的所有类型上通用地定义它,以便使用单个实现方法就足够了?

Is it possible to define it generically over all types which have a method > (also all AnyVals) so that using a single implementation method is enough?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

Saygoodbye 2024-11-13 12:03:44

你可以声明一个隐式转换吗:

implicit def greater2order[A](self : { def >(that : A) }) : Order[A] = ...

然后只使用 scalaz...

can you declare an implicit conversion:

implicit def greater2order[A](self : { def >(that : A) }) : Order[A] = ...

and then just use scalaz...

蛮可爱 2024-11-13 12:03:44

标准库已经做到了这一点。但是,如果没有为具有 > 方法的对象分配类型...

List(1,2,3).max(Ordering.fromLessThan( (a:Int, b:Int) => b > a) )

基本上,此语法适用于具有 > 方法的任何对象,或者某些隐式转换使 <代码>> 可用。它创建一个可以传递给标准 max 方法的 Ordering。

再举一个例子:

case class S(s:String) {
  def >(that:S) = java.text.Collator.getInstance.compare(s, that.s) > 0
}

List(S("abc"), S("ABa"), S("abd")).max(Ordering.fromLessThan( (a:S,b:S) => b>a) )
// res9: S = S(abd)

The standard library sort of does it already. But without assigning a type to the object having the > method...

List(1,2,3).max(Ordering.fromLessThan( (a:Int, b:Int) => b > a) )

Basically this syntax will work for anything that has a > method or where some implicit conversion makes > available. It creates an Ordering that can be passed to the standard max method.

One more example:

case class S(s:String) {
  def >(that:S) = java.text.Collator.getInstance.compare(s, that.s) > 0
}

List(S("abc"), S("ABa"), S("abd")).max(Ordering.fromLessThan( (a:S,b:S) => b>a) )
// res9: S = S(abd)
浅浅淡淡 2024-11-13 12:03:44

排序特征可能是相关的。

它涵盖了标准数字类型(还有一些——请参阅“已知子类”)。隐式可用于跨外部类型“打开它”。

快乐编码。

The Ordering trait may be relevant.

It covers the standard numerical types (and then some -- see "Known Subclasses"). Implicits can be used to "open it up" across external types.

Happy coding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文