如何重载scala函数apply方法

发布于 2024-12-03 09:26:43 字数 515 浏览 0 评论 0原文

如下:scala 贷款模式,可选函数参数

正确的语法是将 withLoaner 参数移动到重载的 apply 方法?我尝试了以下几个版本均未成功。另外,非常感谢对我的错误概念的任何见解。

def withLoaner = new {
  def apply(n:Int, op: Int => String):String = (1 to n).map(op).mkString("\n")
  def apply(n:Int, op: () => String):String = apply{n, i:Int => op()} // no compile
  def apply(op: () => String):String = apply{1, i:Int => op()} // no compile
}

As a follow on to: scala loan pattern, optional function param

What would the proper syntax be to move the withLoaner param to overloaded apply methods? I've tried several versions of the following unsuccessfully. Also, any insights into my error conceptually very appreciated.

def withLoaner = new {
  def apply(n:Int, op: Int => String):String = (1 to n).map(op).mkString("\n")
  def apply(n:Int, op: () => String):String = apply{n, i:Int => op()} // no compile
  def apply(op: () => String):String = apply{1, i:Int => op()} // no compile
}

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

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

发布评论

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

评论(2

一杆小烟枪 2024-12-10 09:26:43

传递多个参数时,必须使用括号将它们括起来。使用 {} 仅适用于单个参数。

此外,在使用函数文字时,如果指定类型,则必须将所有函数参数放在括号内。

所以,

def withLoaner = new {
  def apply(n:Int, op: Int => String):String = (1 to n).map(op).mkString("\n")
  def apply(n:Int, op: () => String):String = apply(n, i => op()) // no type on i
  def apply(op: () => String):String = apply(1, (i: Int) => op()) // parenthesis around parameters
}

When passing multiple parameters, you must use parenthesis around them. Using {} only works for single parameters.

Also, when using function literals, if you specify type, you have to put all of the functions parameters inside parenthesis.

So,

def withLoaner = new {
  def apply(n:Int, op: Int => String):String = (1 to n).map(op).mkString("\n")
  def apply(n:Int, op: () => String):String = apply(n, i => op()) // no type on i
  def apply(op: () => String):String = apply(1, (i: Int) => op()) // parenthesis around parameters
}
×眷恋的温暖 2024-12-10 09:26:43

2 个小变化:

  • 在调用 apply 时使用 ( 而不是 {

    apply(.......)

  • 在隐式函数的参数周围使用 (:

    apply(1, (i:Int) => op())

2 little changes:

  • Use ( instead of { when calling apply:

    apply(.......)

  • Use ( around the arg to an implicit function:

    apply(1, (i:Int) => op())

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