在 Scala 中组合数组

发布于 2024-12-11 13:34:48 字数 193 浏览 0 评论 0原文

如果我有 DerivedType1:BaseTypeDerivedType2:BaseType 以及 Array[DerivedType1]Array[DerivedType2],那么是什么将它们组合成 Array[BaseType] 的最简洁方法是什么?

If I have DerivedType1:BaseType and DerivedType2:BaseType and Array[DerivedType1] and Array[DerivedType2], what's the most succinct way of combining them into Array[BaseType]?

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

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

发布评论

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

评论(1

酒解孤独 2024-12-18 13:34:48

Array 上使用 ++ 方法。

scala> class A; class B extends A; class C extends A
defined class A
defined class B
defined class C

scala> Array(new B, new B) ++ Array(new C, new C)
res33: Array[A] = Array(B@b7501b, B@ec5359, C@1540d0c, C@124a927)

Use the ++ method on Array.

scala> class A; class B extends A; class C extends A
defined class A
defined class B
defined class C

scala> Array(new B, new B) ++ Array(new C, new C)
res33: Array[A] = Array(B@b7501b, B@ec5359, C@1540d0c, C@124a927)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文