scala:如何将扩展列表作为可变参数传递到方法中?

发布于 2024-10-27 23:35:31 字数 373 浏览 2 评论 0原文

在 scala 中创建 Map 时,我调用 Map(entities.map{e => e.id -> e}),我得到:

found   : scala.collection.mutable.IndexedSeq[(Int, Entity)]
required: (Int, Entity)

这是因为Map.apply 的签名是:def apply[A, B](elems: (A, B)*): CC[A, B], 这需要一个 varargs 风格的参数。

有没有办法转换IndexedSeq,以便可以通过Map.apply接受它?

When creating a Map in scala, I call Map(entities.map{e => e.id -> e}), and I get:

found   : scala.collection.mutable.IndexedSeq[(Int, Entity)]
required: (Int, Entity)

This is because the signature for Map.apply is: def apply[A, B](elems: (A, B)*): CC[A, B],
which requires a varargs style argument.

Is there a way to convert the IndexedSeq so that it can be accepted via Map.apply?

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

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

发布评论

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

评论(2

七色彩虹 2024-11-03 23:35:31

试试这个: Map(entities.map{e => e.id -> e}:_*)

使用 :_* 显式地将其输入为可变参数似乎去工作。

Try this: Map(entities.map{e => e.id -> e}:_*)

Explicitly typing it as a varargs using :_* seems to work.

佞臣 2024-11-03 23:35:31

或者这也应该有效:

entities.map{e => e.id -> e} toMap

Or this should work too:

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