6

如何在 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*)
}

但这似乎不起作用...

4

1 回答 1

11

试试这个:

 myFun(strings: _*)

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

于 2012-04-16T02:40:27.740 回答