如何调用采用 String * 和 Array[String] 元素的方法

发布于 2024-12-08 18:09:52 字数 337 浏览 0 评论 0 原文

假设我有一个方法

def f(s:String *) = s.foreach( x => println(x) )

现在我有一个数组:

val a = Array("1", "2", "3")

如何使用 a 元素作为参数调用 f

编辑:

所以给定 a,我想要执行以下操作:

f(a(0), a(1), a(2))  // f("1", "2", "3")

Suppose I have a method

def f(s:String *) = s.foreach( x => println(x) )

Now I have an array:

val a = Array("1", "2", "3")

How do I invoke f with elements of a as parameters?

EDIT:

So given a, I want to do the following:

f(a(0), a(1), a(2))  // f("1", "2", "3")

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

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

发布评论

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

评论(1

不必你懂 2024-12-15 18:09:52

有一个运算符:

f(a: _*)

此操作在 Scala 语言规范版本 2.9 并在6.6 函数应用程序中进一步解释

应用程序中的最后一个参数可以标记为序列参数,例如
e:_*。这样的参数必须对应于类型的重复参数(第 4.6.2 节)
S * [...]。此外,e 的类型必须符合 scala.Seq[T],对于某些符合 S 的类型 T强>。在这个
在这种情况下,通过用序列 e 的元素替换序列 e 来转换参数列表。



顺便说一句,您的 f 函数可以简化:

def f(s:String *) = s foreach println

或者更好(不鼓励使用等号,因为它表明该方法实际上返回某些内容,但它“仅”返回 Unit):

def f(s:String *) {s foreach println}

There is an operator for that:

f(a: _*)

This operation is defined in chapter 4.6.2 Repeated Parameters of The Scala Language Specification Version 2.9 and further explained in 6.6 Function Applications:

The last argument in an application may be marked as a sequence argument, e.g.
e : _*. Such an argument must correspond to a repeated parameter (§4.6.2) of type
S * [...]. Furthermore, the type of e must conform to scala.Seq[T], for some type T which conforms to S. In this
case, the argument list is transformed by replacing the sequence e with its elements.


BTW your f function can be simplified:

def f(s:String *) = s foreach println

Or better (equals sign is discouraged as it suggests that the method actually returns something, however it "only" return Unit):

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