在 Scala 中将函数传递给参数
有什么方法可以在 Scala 中执行类似 argument.
的操作吗?
例如:
如果 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您愿意,您可以自己定义它。它通常被称为“管道运算符”:
那么:
You can define it yourself if you want. It's frequently called the "pipe operator":
Then:
你的意思是这样的吗:
Do you mean something like this: