Scala 可变映射添加

发布于 2024-10-20 16:54:51 字数 323 浏览 1 评论 0原文

我将可变 HashMap 与 MultiMap mixin 一起使用,并注意到 map.add 方法现已弃用:

val fieldTokenMap = new HashMap[String, scala.collection.mutable.Set[Int]] with MultiMap[String, Int]
// ...
fieldTokenMap add (token, docId)

我基本上将字符串或令牌映射到 id 列表。我是否应该以不同的方式在 Scala 中使用 Map 和 MultiMap?

谢谢。

I'm using a mutable HashMap with the MultiMap mixin and noticed that the map.add method is now deprecated:

val fieldTokenMap = new HashMap[String, scala.collection.mutable.Set[Int]] with MultiMap[String, Int]
// ...
fieldTokenMap add (token, docId)

I'm basically mapping a string or token to a list of ids. Is there a different way I'm supposed to use the Map and MultiMap in Scala?

Thanks.

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

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

发布评论

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

评论(1

夏天碎花小短裙 2024-10-27 16:54:51

正如弃用消息所述,请改用 addBinding

As the deprecation message says, use addBinding instead.

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