在 Scala 中将函数传递给参数

发布于 2024-12-18 13:33:14 字数 236 浏览 0 评论 0原文

有什么方法可以在 Scala 中执行类似 argument.(function) 的操作吗?

例如:

如果 myFunc 是求和函数,则 [1,2,3].supply(myFunc) 产生 6

如果我能够做到这一点,那么链接函数似乎更容易,而不是计算某些内容并将其“包装”到函数调用的参数中。

Is there any way to do something like argument.<keyword>(function) in Scala?

For example:

[1,2,3].supply(myFunc) yielding 6 if myFunc were the summation function.

It just seems easier to chain functions if I were able to do this, instead of calculating something and 'wrapping it' into an argument for a function call.

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

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

发布评论

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

评论(2

过气美图社 2024-12-25 13:33:14

如果您愿意,您可以自己定义它。它通常被称为“管道运算符”:

class AnyWrapper[A](wrapped: A) {
  def |>[B](f: A => B) = f(wrapped)
}
implicit def extendAny[A](wrapped: A): AnyWrapper[A] = new AnyWrapper(wrapped)

那么:

def plus1(i: Int) = i + 1
val fortyTwo = 41 |> plus1

You can define it yourself if you want. It's frequently called the "pipe operator":

class AnyWrapper[A](wrapped: A) {
  def |>[B](f: A => B) = f(wrapped)
}
implicit def extendAny[A](wrapped: A): AnyWrapper[A] = new AnyWrapper(wrapped)

Then:

def plus1(i: Int) = i + 1
val fortyTwo = 41 |> plus1
携余温的黄昏 2024-12-25 13:33:14

你的意思是这样的吗:

val sum = { (a: Int, b: Int) => a + b }

List(1, 2, 3).reduceLeft(sum)

Do you mean something like this:

val sum = { (a: Int, b: Int) => a + b }

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