将 Seq 转换为 ArrayBuffer

发布于 2024-12-06 12:09:50 字数 75 浏览 0 评论 0原文

在 Scala 中是否有任何简洁的方法将 Seq 转换为 ArrayBuffer

Is there any concise way to convert a Seq into ArrayBuffer in Scala?

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

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

发布评论

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

评论(2

冷清清 2024-12-13 12:09:50
scala> val seq = 1::2::3::Nil
seq: List[Int] = List(1, 2, 3)

scala> seq.toBuffer
res2: scala.collection.mutable.Buffer[Int] = ArrayBuffer(1, 2, 3)

编辑 Scala 2.1x之后,在 TraversableLike,可以按如下方式使用:

scala> import collection.mutable
import collection.mutable

scala> seq.to[mutable.ArrayBuffer]
res1: scala.collection.mutable.ArrayBuffer[Int] = ArrayBuffer(1, 2, 3)

scala> seq.to[mutable.Set]
res2: scala.collection.mutable.Set[Int] = Set(1, 2, 3)
scala> val seq = 1::2::3::Nil
seq: List[Int] = List(1, 2, 3)

scala> seq.toBuffer
res2: scala.collection.mutable.Buffer[Int] = ArrayBuffer(1, 2, 3)

EDIT After Scala 2.1x, there is a method .to[Coll] defined in TraversableLike, which can be used as follow:

scala> import collection.mutable
import collection.mutable

scala> seq.to[mutable.ArrayBuffer]
res1: scala.collection.mutable.ArrayBuffer[Int] = ArrayBuffer(1, 2, 3)

scala> seq.to[mutable.Set]
res2: scala.collection.mutable.Set[Int] = Set(1, 2, 3)
会傲 2024-12-13 12:09:50

这将起作用:

ArrayBuffer(mySeq : _*)

一些解释:这使用 中的 apply 方法ArrayBuffer 伴随对象。该方法的签名

def apply [A] (elems: A*): ArrayBuffer[A]

意味着它需要可变数量的参数。例如:

ArrayBuffer(1, 2, 3, 4, 5, 6, 7, 8)

也是一个有效的调用。说明 : _* 向编译器指示应该使用 Seq 来代替可变数量的参数(请参阅 Scala 参考)。

This will work:

ArrayBuffer(mySeq : _*)

Some explanations: this uses the apply method in the ArrayBuffer companion object. The signature of that method is

def apply [A] (elems: A*): ArrayBuffer[A]

meaning that it takes a variable number of arguments. For instance:

ArrayBuffer(1, 2, 3, 4, 5, 6, 7, 8)

is also a valid call. The ascription : _* indicates to the compiler that a Seq should be used in place of that variable number of arguments (see Section 4.6.2 in the Scala Reference).

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