gpt4 book ai didi

scala - 将变长参数传递给期望相同的另一个函数?

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

如何在Scala中对此权限进行编码?

def myFun(strings: String*) = {
// do something...
}

def myWraper(strings: String*) = {
// do something else and then call myFun with the dame input
myFun(strings)
}

我试过像这样的星号
def myWraper(strings: String*) = {
// do something else and then call myFun with the dame input
myFun(strings*)
}

但这似乎不起作用...

最佳答案

试试这个:

 myFun(strings: _*)

您需要告诉它在可变参数中分割 strings

关于scala - 将变长参数传递给期望相同的另一个函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10168101/

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