gpt4 book ai didi

scala - 如何重载scala函数的应用方法

转载 作者:行者123 更新时间:2023-12-04 13:24:34 24 4
gpt4 key购买 nike

作为后续内容:scala loan pattern, optional function param

将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
}

最佳答案

传递多个参数时,必须在它们周围使用括号。使用{}仅适用于单个参数。

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

所以,

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
}

关于scala - 如何重载scala函数的应用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7343178/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com